Struct ForeignKeyRef
pub struct ForeignKeyRef {
pub table: String,
pub column: String,
pub on_delete: Option<ForeignKeyAction>,
pub on_update: Option<ForeignKeyAction>,
}Expand description
A reference to a foreign key in another table.
The referenced table name.
§column: StringThe referenced column name.
Action on delete.
Action on update.