29 lines
663 B
Python
29 lines
663 B
Python
"""empty message
|
|
|
|
Revision ID: 1fdd1bdb600e
|
|
Revises: 17597692d0b0
|
|
Create Date: 2020-06-17 16:44:16.427988
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '1fdd1bdb600e'
|
|
down_revision = '17597692d0b0'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('task_event', sa.Column('task_data', sa.JSON(), nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('task_event', 'task_data')
|
|
# ### end Alembic commands ###
|