Skip to content

Commit

Permalink
fix: added missing type to authenticator table of drizzle postgres ad…
Browse files Browse the repository at this point in the history
…apter (#11974)
  • Loading branch information
nicholasdly authored Oct 6, 2024
1 parent 17ae956 commit 9170801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter-drizzle/src/lib/pg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ export type DefaultPostgresAuthenticatorTable = PgTableWithColumns<{
dataType: "string"
}>
userId: DefaultPostgresColumn<{
columnType: "PgVarchar" | "PgText"
columnType: "PgVarchar" | "PgText" | "PgUUID"
data: string
notNull: true
dataType: "string"
Expand Down

0 comments on commit 9170801

Please sign in to comment.