Skip to content

Commit

Permalink
refactor: fixing typo verfication to verification and updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjdalal authored and ndom91 committed Dec 22, 2024
1 parent 2f86dfd commit 7ee3a78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/adapter-drizzle/src/lib/pg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ export function defineTables(
token: text("token").notNull(),
expires: timestamp("expires", { mode: "date" }).notNull(),
},
(verficationToken) => ({
(verificationToken) => ({
compositePk: primaryKey({
columns: [verficationToken.identifier, verficationToken.token],
columns: [verificationToken.identifier, verificationToken.token],
}),
})
) satisfies DefaultPostgresVerificationTokenTable)
Expand Down

0 comments on commit 7ee3a78

Please sign in to comment.