8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import { pgTable } from "drizzle-orm/pg-core";
|
|
|
|
export const player = pgTable("players", (t) => ({
|
|
id: t.uuid().primaryKey(),
|
|
name: t.varchar().notNull(),
|
|
created_at: t.timestamp().defaultNow()
|
|
}))
|