12 lines
885 B
SQL
12 lines
885 B
SQL
INSERT INTO `salix`.`ACL` (model, property, accessType, permission, principalType, principalId)
|
|
VALUES
|
|
('Collection', 'assign', 'WRITE', 'ALLOW', 'ROLE', 'production'),
|
|
('ExpeditionPallet', 'getPallet', 'READ', 'ALLOW', 'ROLE', 'production'),
|
|
('MachineWorker','updateInTime','WRITE','ALLOW','ROLE','production'),
|
|
('MobileAppVersionControl','getVersion','READ','ALLOW','ROLE','production'),
|
|
('SaleTracking','delete','WRITE','ALLOW','ROLE','production'),
|
|
('SaleTracking','updateTracking','WRITE','ALLOW','ROLE','production'),
|
|
('SaleTracking','setPicked','WRITE','ALLOW','ROLE','production'),
|
|
('ExpeditionPallet', '*', 'READ', 'ALLOW', 'ROLE', 'production'),
|
|
('Sale', 'getFromSectorCollection', 'READ', 'ALLOW', 'ROLE', 'production'),
|
|
('ItemBarcode', 'delete', 'WRITE', 'ALLOW', 'ROLE', 'production'); |