Initial alembic migration to base other migrations on

Use this migration as a parent for yours.
This commit is contained in:
Boris Bobrov 2015-11-26 23:47:55 +03:00 committed by Christopher Allan Webber
parent 2b68834c44
commit a6835f422f

View File

@ -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