You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
USE lifanghe_education;
|
|
|
|
UPDATE roles
|
|
SET permissions = JSON_ARRAY_APPEND(permissions, '$', 'points:rule')
|
|
WHERE role IN ('campus_admin', 'finance')
|
|
AND JSON_CONTAINS(permissions, JSON_QUOTE('points:rule')) = 0
|
|
AND JSON_CONTAINS(permissions, JSON_QUOTE('*:*:*')) = 0;
|