Skip to content

Commit

Permalink
Delete IGNORE statement from INSERT INTO db migration
Browse files Browse the repository at this point in the history
  • Loading branch information
rmiccoli committed May 23, 2023
1 parent 5a66082 commit 214cff1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
INSERT IGNORE INTO system_scope(scope, description, icon, restricted, default_scope, structured, structured_param_description)
INSERT INTO system_scope(scope, description, icon, restricted, default_scope, structured, structured_param_description)
VALUES
('iam:admin:read', 'Read access to IAM APIs', null, true, false, false, null);
INSERT IGNORE INTO system_scope(scope, description, icon, restricted, default_scope, structured, structured_param_description)
INSERT INTO system_scope(scope, description, icon, restricted, default_scope, structured, structured_param_description)
VALUES
('iam:admin:write', 'Write access to IAM APIs', null, true, false, false, null);

0 comments on commit 214cff1

Please sign in to comment.