The On Delete and On Update dropdown list define the type of the actions to be taken.
CASCADE
Delete the corresponding foreign key, or update the corresponding foreign key to the new value of the primary key.SET NULL
Set all the columns of the corresponding foreign key to NULL.No ACTION
Does not change the foreign key.RESTRICT
Produce an error indicating that the deletion or update would create a foreign key constraint violation.