feat(column): refs #6987 addNewReference
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Pablo Natek 2024-03-06 14:59:00 +01:00
parent 9eb3b32564
commit 4248c011f8
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);