Skip to content

Commit

Permalink
alembic: fix syntax issue for mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed Jun 14, 2023
1 parent 66976bc commit 54f63af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ def downgrade():
"accounts_role",
["role_id"],
["id"],
ondelete="CASCADE",
ondelete="CASCADE"
)
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def upgrade():
"accounts_role",
["role_id"],
["id"],
ondelete="CASCADE",
ondelete="CASCADE"
)


Expand Down

0 comments on commit 54f63af

Please sign in to comment.