feat: refs #6818 saysimple integration #3168

Merged
jorgep merged 6 commits from 6818-saySimpleIntegration into dev 2024-11-13 08:25:21 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 9b28cf9130 - Show all commits

View File

@ -4008,6 +4008,6 @@ UPDATE vn.department SET pbxQueue = '1000' WHERE name = "CAMARA";
UPDATE vn.department SET pbxQueue = '2000' WHERE name = "VENTAS";
INSERT INTO vn.saySimpleCountry (countryFk, channel)
INSERT IGNORE INTO vn.saySimpleCountry (countryFk, channel)
VALUES (19, 1169),
(8, 1183);

View File

@ -3,4 +3,8 @@ CREATE TABLE IF NOT EXISTS vn.saySimpleCountry(
channel INT(4) COMMENT 'channel de whatsapp de saySimple',
PRIMARY KEY (countryFk),
CONSTRAINT `saySimpleCountry_FK` FOREIGN KEY (`countryFk`) REFERENCES vn.country (`id`) ON UPDATE CASCADE
);
);
INSERT IGNORE INTO vn.saySimpleCountry (countryFk, channel)
VALUES (19, 1169),
(8, 1183);