sea_schema/postgres/query/constraints/
key_column_usage.rs

1#[derive(Debug, sea_query::Iden)]
2/// Ref: https://www.postgresql.org/docs/13/infoschema-key-column-usage.html
3pub enum KeyColumnUsageFields {
4    ConstraintCatalog,
5    ConstraintSchema,
6    ConstraintName,
7    TableCatalog,
8    TableSchema,
9    TableName,
10    ColumnName,
11    OrdinalPosition,
12    PositionInUniqueConstraint,
13}