added Session table for cookie-based auth

This commit is contained in:
Oliver Bryan
2026-01-09 05:31:13 +00:00
parent ad138059db
commit 7201646b0a
2 changed files with 21 additions and 0 deletions

View File

@@ -11,6 +11,8 @@ export type {
ProjectInsert,
ProjectRecord,
ProjectResponse,
SessionInsert,
SessionRecord,
UserInsert,
UserRecord,
} from "./schema";
@@ -27,6 +29,9 @@ export {
Project,
ProjectInsertSchema,
ProjectSelectSchema,
Session,
SessionInsertSchema,
SessionSelectSchema,
User,
UserInsertSchema,
UserSelectSchema,