Type Alias ForeignKeyAction

pub type ForeignKeyAction = ForeignKeyAction;
Expand description

Action to perform on a foreign key whenever there are changes to an ActiveModel

Aliased Type§

enum ForeignKeyAction {
    Restrict,
    Cascade,
    SetNull,
    NoAction,
    SetDefault,
}

Variants§

§

Restrict

§

Cascade

§

SetNull

§

NoAction

§

SetDefault