Skip to content

Commit

Permalink
Merge branch 'main' into fix-fake-callback
Browse files Browse the repository at this point in the history
  • Loading branch information
jimleroyer authored May 28, 2024
2 parents 075edec + 43d07f0 commit f024fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/versions/0451_create_db_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def upgrade():
create_role_if_not_exist(super_role)
for role in roles:
create_role_if_not_exist(role)
op.execute(f"GRANT {role} TO {super_role} WITH ADMIN OPTION;")
op.execute(f"GRANT {super_role} TO {role} WITH ADMIN OPTION;")


def create_role_if_not_exist(role):
Expand Down

0 comments on commit f024fac

Please sign in to comment.