ยฉ 2026 Hedgehog Software, LLC
export const identity = (name: string) => customType<{ data: number notNull: true default: true }>({ dataType() { return 'INTEGER GENERATED ALWAYS AS IDENTITY' }, })(name)
"id" "INTEGER GENERATED ALWAYS AS IDENTITY" PRIMARY KEY NOT NULL,