salix/db/changes/232801/02-deliveryAssistantInherit...

5 lines
237 B
MySQL
Raw Normal View History

2023-06-28 06:02:31 +00:00
INSERT INTO account.roleInherit
SELECT (SELECT id FROM account.role r WHERE r.name = 'deliveryAssistant'), ri.inheritsFrom
FROM account.roleInherit ri
JOIN account.role r ON r.id = ri.`role`
WHERE r.name = 'deliveryBoss';