mirror of
https://github.com/Nutomic/ibis.git
synced 2024-12-02 12:31:08 +00:00
2 lines
207 B
MySQL
2 lines
207 B
MySQL
|
ALTER TABLE conflict DROP CONSTRAINT conflict_creator_id_fkey;
|
||
|
ALTER TABLE conflict ADD CONSTRAINT conflict_creator_id_fkey FOREIGN KEY (creator_id) REFERENCES person(id) ON UPDATE CASCADE ON DELETE CASCADE;
|