salix/db/versions/.archive/10157-goldenCyca/00-firstScript.sql

3 lines
305 B
MySQL
Raw Normal View History

ALTER TABLE postgresql.business_labour DROP FOREIGN KEY workcenter_labour;
ALTER TABLE postgresql.business_labour ADD CONSTRAINT business_labour_FK FOREIGN KEY (workcenter_id) REFERENCES vn.workCenter(id) ON DELETE RESTRICT ON UPDATE CASCADE;
RENAME TABLE postgresql.workcenter TO postgresql.workcenter__;