Carloshs94
02/09/2022, 11:48 AMosaxma
02/09/2022, 11:54 AMosaxma
02/09/2022, 11:56 AMsql
ALTER TABLE some_table
DROP CONSTRAINT some_constraint,
ADD CONSTRAINT some_constraint FOREIGN KEY (the_key) REFERENCES another_table(the_foreign_key) ON DELETE SET NULL;osaxma
02/09/2022, 11:57 AMCarloshs94
02/09/2022, 11:58 AMCarloshs94
02/09/2022, 11:59 AMosaxma
02/09/2022, 11:59 AMNO ACTION which will not allow the foreign key to be deletedosaxma
02/09/2022, 12:00 PMsql
ON UPDATE CASCADE ON DELETE SET NULL -- or SET DEFAULT .. etcCarloshs94
02/09/2022, 12:02 PM