@@ -111,9 +111,9 @@ export const verificationTokens = pgTable(
111
111
token: text (" token" ).notNull (),
112
112
expires: timestamp (" expires" , { mode: " date" }).notNull (),
113
113
},
114
- (verficationToken ) => ({
114
+ (verificationToken ) => ({
115
115
compositePk: primaryKey ({
116
- columns: [verficationToken .identifier , verficationToken .token ],
116
+ columns: [verificationToken .identifier , verificationToken .token ],
117
117
}),
118
118
})
119
119
)
@@ -220,9 +220,9 @@ export const verificationTokens = mysqlTable(
220
220
token: varchar (" token" , { length: 255 }).notNull (),
221
221
expires: timestamp (" expires" , { mode: " date" }).notNull (),
222
222
},
223
- (verficationToken ) => ({
223
+ (verificationToken ) => ({
224
224
compositePk: primaryKey ({
225
- columns: [verficationToken .identifier , verficationToken .token ],
225
+ columns: [verificationToken .identifier , verificationToken .token ],
226
226
}),
227
227
})
228
228
)
@@ -318,9 +318,9 @@ export const verificationTokens = sqliteTable(
318
318
token: text (" token" ).notNull (),
319
319
expires: integer (" expires" , { mode: " timestamp_ms" }).notNull (),
320
320
},
321
- (verficationToken ) => ({
321
+ (verificationToken ) => ({
322
322
compositePk: primaryKey ({
323
- columns: [verficationToken .identifier , verficationToken .token ],
323
+ columns: [verificationToken .identifier , verificationToken .token ],
324
324
}),
325
325
})
326
326
)
0 commit comments