sea_schema/postgres/query/constraints/table_constraints.rs
1#[derive(Debug, sea_query::Iden)]
2/// Ref: https://www.postgresql.org/docs/13/infoschema-table-constraints.html
3pub enum TableConstraintsField {
4 ConstraintCatalog,
5 ConstraintSchema,
6 ConstraintName,
7 TableCatalog,
8 TableSchema,
9 TableName,
10 ConstraintType,
11 IsDeferrable,
12 InitiallyDeferred,
13}