Skip to content

Commit

Permalink
Update migrations/versions/0451_create_db_users.py
Browse files Browse the repository at this point in the history
Co-authored-by: Pat Heard <[email protected]>
  • Loading branch information
P0NDER0SA and patheard authored May 28, 2024
1 parent 9720b6f commit 87a77e6
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 {super_user} TO {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 87a77e6

Please sign in to comment.