© 2026 Hedgehog Software, LLC
type Address = { street: string; city: string; state: string; zip: string; };
export const Organizations = vendorPortalSchema.table('organizations', { id: serial("id").primaryKey(), name: text("name").unique().notNull(), description: text("description"), location: json("location").$type<Address>(), logo_picture_file_id: serial("logo_picture_file_id").references( (): AnyPgColumn => Files.id ), });
NeonDbError: data type json has no default operator class for access method "btree"
json
type Address = { street: string, city: string, state: string, zip: string, };