17 lines
766 B
SQL
17 lines
766 B
SQL
-- Auto-generated SQL script. Actual values for binary/complex data types may differ - what you see is the default string representation of values.
|
|
INSERT INTO `account`.`role` (name, description)
|
|
VALUES ('deliveryAssistant','Jefe auxiliar repartos');
|
|
|
|
INSERT INTO `account`.`roleInherit` (role, inheritsFrom)
|
|
SELECT (SELECT id FROM account.role r1 WHERE r1.name = 'deliveryAssistant'), ri.inheritsFrom
|
|
FROM account.roleInherit ri
|
|
JOIN account.role r2 ON r2.id = ri.`role`
|
|
WHERE r2.name = 'deliveryBoss';
|
|
|
|
INSERT INTO `account`.`roleInherit` (role, inheritsFrom)
|
|
SELECT (SELECT id FROM account.role WHERE name = 'deliveryBoss') role,
|
|
(SELECT id FROM account.role WHERE name = 'deliveryAssistant') roleInherit;
|
|
|
|
|
|
CALL `account`.`role_syncPrivileges`();
|