feat(column): refs #6387 add departmentFk
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Pablo Natek 2024-03-06 15:06:47 +01:00
parent 96cbcb5e4f
commit 668ff88857
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);