This commit is contained in:
2025-09-26 15:28:35 +02:00
commit faa2f94192
52 changed files with 5313 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')
});