chore: init
This commit is contained in:
6
src/lib/server/db/schema.ts
Normal file
6
src/lib/server/db/schema.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { pgTable, serial, integer } from 'drizzle-orm/pg-core';
|
||||
|
||||
export const user = pgTable('user', {
|
||||
id: serial('id').primaryKey(),
|
||||
age: integer('age')
|
||||
});
|
||||
Reference in New Issue
Block a user