corrected a syntax error preventing the changes to apply
This commit is contained in:
parent
da9eddbf9e
commit
e547642c16
|
@ -3,9 +3,10 @@ DELETE FROM `salix`.`ACL` WHERE id = 188;
|
|||
UPDATE `salix`.`ACL` tdms SET tdms.accessType = '*'
|
||||
WHERE tdms.id = 165;
|
||||
|
||||
INSERT INTO salix.ACL (model, principalId, property, accessType)
|
||||
VALUES ('InvoiceInTax','administrative', '*', '*'),
|
||||
VALUES ('InvoiceInLog','administrative', '*', 'READ');
|
||||
INSERT INTO `salix`.`ACL` (model, principalId, property, accessType)
|
||||
VALUES
|
||||
('InvoiceInTax','administrative', '*', '*'),
|
||||
('InvoiceInLog','administrative', '*', 'READ');
|
||||
|
||||
INSERT INTO `salix`.`ACL` (model, property, accessType, permission, principalType, principalId)
|
||||
VALUES
|
||||
|
|
Loading…
Reference in New Issue