You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PostgresSchemaReader reconstructs tables, columns, primary keys, unique constraints, and foreign keys, but CHECK constraints and database enum types are not yet read. Add:
CHECK constraints via information_schema.check_constraints (skipping the synthesized NOT NULL checks).
Enum types via pg_type/pg_enum, mapped to [Table]-backed enums / InstantiatedValues.
Cover with the existing live-DB round-trip test (PostgresSchemaReaderTests).
PostgresSchemaReaderreconstructs tables, columns, primary keys, unique constraints, and foreign keys, but CHECK constraints and database enum types are not yet read. Add:information_schema.check_constraints(skipping the synthesizedNOT NULLchecks).pg_type/pg_enum, mapped to[Table]-backed enums /InstantiatedValues.Cover with the existing live-DB round-trip test (
PostgresSchemaReaderTests).