Files
pokemon/src/db/schema.ts
2026-02-07 14:02:03 -05:00

10 lines
329 B
TypeScript

// src/db/schema.ts
import { mysqlTable, serial, varchar, int } from 'drizzle-orm/mysql-core';
export const users = mysqlTable('users', {
id: serial('id').notNull().primaryKey(),
name: varchar('name', { length: 255 }).notNull(),
age: int('age').notNull(),
email: varchar('email', { length: 255 }).notNull(),
});