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 committed Dec 13, 2024
1 parent 7969dd5 commit 1355093
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],

Check warning on line 88 in packages/adapter-drizzle/src/lib/pg.ts

View check run for this annotation

Codecov / codecov/patch

packages/adapter-drizzle/src/lib/pg.ts#L88

Added line #L88 was not covered by tests
}),
})
) satisfies DefaultPostgresVerificationTokenTable)
Expand Down

0 comments on commit 1355093

Please sign in to comment.