30 lines
502 B
Python
30 lines
502 B
Python
|
"""add tasks table
|
||
|
|
||
|
Revision ID: 40867bd0dcc8
|
||
|
Revises:
|
||
|
Create Date: 2020-05-20 10:59:38.018843
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '40867bd0dcc8'
|
||
|
down_revision = None
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
op.create_table(
|
||
|
'tasks',
|
||
|
sa.Column('id', sa.Integer, primary_key=True),
|
||
|
sa.Column('title', sa.String, nullable=False)
|
||
|
)
|
||
|
pass
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
op.drop_table('tasks')
|