sea_schema/postgres/query/constraints/
referential_constraints.rs

1#[derive(Debug, sea_query::Iden)]
2/// Ref: https://www.postgresql.org/docs/13/infoschema-referential-constraints.html
3pub enum ReferentialConstraintsFields {
4    ConstraintName,
5    UniqueConstraintSchema,
6    UniqueConstraintName,
7    MatchOption,
8    UpdateRule,
9    DeleteRule,
10}