Skip to main content

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    ConstraintSchema,
5    ConstraintName,
6    UniqueConstraintSchema,
7    UniqueConstraintName,
8    MatchOption,
9    UpdateRule,
10    DeleteRule,
11}