WIP: feat(column): refs #6987 addNewReference #2137

Closed
pablone wants to merge 1 commits from 6987-addDeparmentExtension into dev
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
-- Place your SQL code here
ALTER TABLE pbx.queue ADD IF NOT EXISTS departmentFk int(11) NULL;
ALTER TABLE pbx.queue ADD CONSTRAINT queue_department_FK FOREIGN KEY IF NOT EXISTS (departmentFk) REFERENCES vn.department(id);