Skip to content

Commit

Permalink
Fix for flask_migrate error, merged two heads bcd74f0a02ea and e47fde…
Browse files Browse the repository at this point in the history
…01cc62
  • Loading branch information
Sangeetha-Bheeman committed Oct 17, 2022
1 parent 3ba1e97 commit c1cb81c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions migrations/versions/20c4410755ec_merging_two_heads.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""merging two heads
Revision ID: 20c4410755ec
Revises: bcd74f0a02ea, e47fde01cc62
Create Date: 2022-10-17 11:01:13.594526
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = "20c4410755ec"
down_revision = ("bcd74f0a02ea", "e47fde01cc62")
branch_labels = None
depends_on = None


def upgrade():
pass


def downgrade():
pass

0 comments on commit c1cb81c

Please sign in to comment.