mirror of https://github.com/MISP/misp-modules
33 lines
784 B
Python
33 lines
784 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 01de07e2686a
|
||
|
Revises:
|
||
|
Create Date: 2024-02-05 14:38:17.739081
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '01de07e2686a'
|
||
|
down_revision = None
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
with op.batch_alter_table('module', schema=None) as batch_op:
|
||
|
batch_op.add_column(sa.Column('is_active', sa.Boolean(), nullable=True, default=True))
|
||
|
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
with op.batch_alter_table('module', schema=None) as batch_op:
|
||
|
batch_op.drop_column('is_active')
|
||
|
|
||
|
# ### end Alembic commands ###
|