© 2026 Hedgehog Software, LLC
export const users = pgTable( "user", { id: bigint("id", { mode: "bigint" }).primaryKey(), test: bit("test", { dimensions: 10 }), } );
CREATE TABLE IF NOT EXISTS "formatting" ( "id" bigint PRIMARY KEY NOT NULL, "test" "bit(10)", );
ERROR: type "bit(10)" does not exist at character 161