minor db schema, auth changes (prep)

This commit is contained in:
2024-10-31 00:23:35 -07:00
parent 25b2090961
commit 1759f30358
5 changed files with 11 additions and 5 deletions

View File

@@ -2,7 +2,8 @@ import { sqliteTable, text, integer } from 'drizzle-orm/sqlite-core';
export const user = sqliteTable('user', {
id: text('id').primaryKey(),
age: integer('age')
username: text('username').notNull(),
name: text('name').notNull(),
});
export const session = sqliteTable('session', {