@@ -52,15 +52,15 @@ export const account = sqliteTable("accounts", {
5252 updatedAt : integer ( "updated_at" , { mode : "timestamp" } ) . notNull ( ) ,
5353} ) ;
5454
55- // export const verification = sqliteTable("verifications", {
56- // id: text("id").primaryKey(),
57- // identifier: text("identifier").notNull(),
58- // value: text("value").notNull(),
59- // expiresAt: integer("expires_at", { mode: "timestamp" }).notNull(),
60- // createdAt: integer("created_at", { mode: "timestamp" }).$defaultFn(
61- // () => /* @__PURE__ */ new Date(),
62- // ),
63- // updatedAt: integer("updated_at", { mode: "timestamp" }).$defaultFn(
64- // () => /* @__PURE__ */ new Date(),
65- // ),
66- // });
55+ export const verification = sqliteTable ( "verifications" , {
56+ id : text ( "id" ) . primaryKey ( ) ,
57+ identifier : text ( "identifier" ) . notNull ( ) ,
58+ value : text ( "value" ) . notNull ( ) ,
59+ expiresAt : integer ( "expires_at" , { mode : "timestamp" } ) . notNull ( ) ,
60+ createdAt : integer ( "created_at" , { mode : "timestamp" } ) . $defaultFn (
61+ ( ) => /* @__PURE__ */ new Date ( ) ,
62+ ) ,
63+ updatedAt : integer ( "updated_at" , { mode : "timestamp" } ) . $defaultFn (
64+ ( ) => /* @__PURE__ */ new Date ( ) ,
65+ ) ,
66+ } ) ;
0 commit comments