import { player } from "./player"; import { dndSchema } from "./schema"; export const hero = dndSchema.table("heros", (t) => ({ id: t.uuid().primaryKey(), player_id: t.uuid().notNull().references(() => player.id), }))