20 lines
301 B
MySQL
20 lines
301 B
MySQL
|
INSERT INTO
|
||
|
salix.ACL (
|
||
|
id,
|
||
|
model,
|
||
|
property,
|
||
|
accessType,
|
||
|
permission,
|
||
|
principalType,
|
||
|
principalId
|
||
|
)
|
||
|
VALUES
|
||
|
(
|
||
|
344,
|
||
|
'workerDisableExcluded',
|
||
|
'*',
|
||
|
'*',
|
||
|
'ALLOW',
|
||
|
'ROLE',
|
||
|
'employee'
|
||
|
);
|