export const sessions = pgTable("session", {
id: text().notNull().primaryKey(),
secretHash: text().notNull(),
lastVerifiedAt: timestamp().notNull(),
createdAt: timestamp().defaultNow().notNull(),
userId: text().notNull().references(() => users.id)
})
export const sessions = pgTable("session", {
id: text().notNull().primaryKey(),
secretHash: text().notNull(),
lastVerifiedAt: timestamp().notNull(),
createdAt: timestamp().defaultNow().notNull(),
userId: text().notNull().references(() => users.id)
})