sea_schema/postgres/query/constraints/
check_constraints.rs

1#[derive(Debug, sea_query::Iden)]
2/// Ref: https://www.postgresql.org/docs/13/infoschema-check-constraints.html
3pub enum CheckConstraintsFields {
4    ConstraintCatalog,
5    ConstraintSchema,
6    ConstraintName,
7    CheckClause,
8}