forked from apache/superset
-
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 the build by merging both db migrations heads (apache#5464)
- Loading branch information
1 parent
7fcc2af
commit 971e9f0
Showing
2 changed files
with
40 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
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: 705732c70154 | ||
Revises: ('4451805bbaa1', '1d9e835a84f9') | ||
Create Date: 2018-07-22 21:51:19.235558 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '705732c70154' | ||
down_revision = ('4451805bbaa1', '1d9e835a84f9') | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
def upgrade(): | ||
pass | ||
|
||
|
||
def downgrade(): | ||
pass |