export const verification = pgTable("verification", {
id: text().primaryKey().notNull(),
date_created: timestamp({ mode: 'string' }),
expires_at: timestamp({ mode: 'string' }).notNull(),
value: text().notNull(),
identifier: text(),
date_updated: timestamp({ mode: 'string' }),
});
export const verification = pgTable("verification", {
id: text().primaryKey().notNull(),
date_created: timestamp({ mode: 'string' }),
expires_at: timestamp({ mode: 'string' }).notNull(),
value: text().notNull(),
identifier: text(),
date_updated: timestamp({ mode: 'string' }),
});