-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[hotfix] merging db migration scripts (#2448)
- Loading branch information
1 parent
edf5c0e
commit 65c89f5
Showing
1 changed file
with
22 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,22 @@ | ||
"""empty message | ||
Revision ID: 979c03af3341 | ||
Revises: ('db527d8c4c78', 'ea033256294a') | ||
Create Date: 2017-03-21 15:41:34.383808 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '979c03af3341' | ||
down_revision = ('db527d8c4c78', 'ea033256294a') | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
def upgrade(): | ||
pass | ||
|
||
|
||
def downgrade(): | ||
pass |