Skip to content

Commit

Permalink
fix: wrong column type for access_token (#828)
Browse files Browse the repository at this point in the history
  • Loading branch information
noxify authored Jan 4, 2024
1 parent b843811 commit bb7d386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/src/schema/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const accounts = mySqlTable(
provider: varchar("provider", { length: 255 }).notNull(),
providerAccountId: varchar("providerAccountId", { length: 255 }).notNull(),
refresh_token: varchar("refresh_token", { length: 255 }),
access_token: varchar("access_token", { length: 255 }),
access_token: text("access_token"),
expires_at: int("expires_at"),
token_type: varchar("token_type", { length: 255 }),
scope: varchar("scope", { length: 255 }),
Expand Down

0 comments on commit bb7d386

Please sign in to comment.