export const people = pgTable("people",{
id: uuid("id").primaryKey(),
name: text("name").notNull(),
parentId: uuid("parent_id").notNull().references(() => people.id)
})
export const people = pgTable("people",{
id: uuid("id").primaryKey(),
name: text("name").notNull(),
parentId: uuid("parent_id").notNull().references(() => people.id)
})