Initial alembic migration to base other migrations on
Use this migration as a parent for yours.
This commit is contained in:
parent
2b68834c44
commit
a6835f422f
@ -0,0 +1,22 @@
|
||||
"""initial revision
|
||||
|
||||
Revision ID: 52bf0ccbedc1
|
||||
Revises: None
|
||||
Create Date: 2015-11-07 17:00:28.191042
|
||||
Description: This is an initial Alembic migration
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '52bf0ccbedc1'
|
||||
down_revision = None
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
def upgrade():
|
||||
pass
|
||||
|
||||
|
||||
def downgrade():
|
||||
pass
|
Loading…
x
Reference in New Issue
Block a user