chore: init

This commit is contained in:
2025-11-30 23:49:17 +01:00
commit 79476b4bed
30 changed files with 3737 additions and 0 deletions

View 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')
});