Open Orionsg opened 5 years ago
The keyword "restrict" is used in foreign key clauses, e.g.:
create table event ( id bigint unsigned not null primary key auto_increment , event_type_id smallint not null , foreign key event_type_id references event_type(id) on delete restrict on update restrict );
The keyword "restrict" is used in foreign key clauses, e.g.: