2022-08-01 05:59:04 +00:00
|
|
|
CREATE TABLE `vn`.`packingSiteConfig` (
|
|
|
|
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`shinobiUrl` varchar(255) NOT NULL,
|
|
|
|
`shinobiGroupKey` varchar(255) NOT NULL,
|
|
|
|
`avgBoxingTime` INT(3) NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
);
|
|
|
|
|
|
|
|
INSERT INTO `vn`.`packingSiteConfig` SET
|
2022-08-01 13:03:17 +00:00
|
|
|
shinobiUrl = 'http://shinobi.verdnatura.es',
|
2022-08-01 05:59:04 +00:00
|
|
|
shinobiGroupKey = 'xVqft9LFXg',
|
|
|
|
avgBoxingTime = 30;
|
|
|
|
|
|
|
|
INSERT INTO `salix`.`ACL` (`model`, `property`, `accessType`, `permission`, `principalType`, `principalId`)
|
|
|
|
VALUES
|
|
|
|
('Boxing', '*', '*', 'ALLOW', 'ROLE', 'employee');
|