8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import { dndSchema } from "./schema";
|
|
|
|
export const player = dndSchema.table("players", (t) => ({
|
|
id: t.uuid().primaryKey(),
|
|
name: t.varchar().notNull(),
|
|
created_at: t.timestamp().defaultNow()
|
|
}))
|