Initial commit
This commit is contained in:
commit
e0b483f344
26 changed files with 5514 additions and 0 deletions
6
src/lib/server/db/schema.ts
Normal file
6
src/lib/server/db/schema.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { sqliteTable, text, integer } from 'drizzle-orm/sqlite-core';
|
||||
|
||||
export const user = sqliteTable('user', {
|
||||
id: integer('id').primaryKey(),
|
||||
age: integer('age')
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue