Il FOREIGN_KEY_CHECKS
è un ottimo strumento ma se hai bisogno di sapere come farlo senza far cadere e ricreare le tue tabelle. Puoi usare un SELECT
dichiarazione SU information_schema.TABLE_CONSTRAINTS
per determinare se la chiave esterna esiste:
IF NOT EXISTS (
SELECT NULL
FROM information_schema.TABLE_CONSTRAINTS
WHERE
CONSTRAINT_SCHEMA = DATABASE() AND
CONSTRAINT_NAME = 'fk_rabbits_main_page' AND
CONSTRAINT_TYPE = 'FOREIGN KEY'
)
THEN
ALTER TABLE `rabbits`
ADD CONSTRAINT `fk_rabbits_main_page`
FOREIGN KEY (`main_page_id`)
REFERENCES `rabbit_pages` (`id`);
END IF