-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for flask_migrate error, merged two heads bcd74f0a02ea and e47fde…
…01cc62
- Loading branch information
1 parent
3ba1e97
commit c1cb81c
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |