Struct sea_schema::postgres::def::Exclusion
source · pub struct Exclusion {
pub name: String,
pub using: String,
pub columns: Vec<String>,
pub operation: String,
}Available on crate features
postgres and def only.Expand description
A constraint that ensures that, if any two rows are compared on the specified columns or expressions using the specified operators, at least one of these operator comparisons returns false or null
Fields§
§name: String§using: String§columns: Vec<String>§operation: String