fix: auth schema conflict

This commit is contained in:
John Yeo
2025-12-08 14:03:44 +00:00
parent 310e574caf
commit 0c9a46f24a

View File

@@ -115,9 +115,6 @@ export const invitation = pgTable("invitation", {
inviterId: text("inviter_id")
.notNull()
.references(() => user.id, { onDelete: "cascade" }),
createdAt: timestamp("created_at", { withTimezone: true })
.$defaultFn(() => new Date())
.notNull(),
}).enableRLS();
export const authSchema = {