2412_testToMaster #2185

Merged
alexm merged 19 commits from 2412_testToMaster into master 2024-03-21 06:00:10 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit fc3c9332b3 - Show all commits

View File

@ -0,0 +1,8 @@
ALTER TABLE vn.department
ADD COLUMN pbxQueue varchar(128) CHARACTER
SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL NULL;
ALTER TABLE vn.department
ADD CONSTRAINT department_queue_FK
FOREIGN KEY (pbxQueue) REFERENCES pbx.queue(name) ON DELETE RESTRICT ON UPDATE CASCADE;