CASCADE - deletes or updates appropriate rows in the child table
SET NULL - sets the foreign key column of the child table to NULL
RESTRICT - rejects the operation for the parent table
NO ACTION - equivalent to RESTRICT
Note: RESTRICT is the same as omitting the ON DELETE or ON UPDATE clause, which means that it's default action