Files
notifications-api/migrations/versions/0169_hidden_templates_nullable.py

23 lines
520 B
Python
Raw Normal View History

"""
Revision ID: 0169_hidden_templates_nullable
Revises: 0168_hidden_templates
Create Date: 2018-02-21 14:05:04.448977
"""
2024-04-01 15:12:33 -07:00
from alembic import op
2023-08-29 14:54:30 -07:00
revision = "0169_hidden_templates_nullable"
down_revision = "0168_hidden_templates"
def upgrade():
2023-08-29 14:54:30 -07:00
op.alter_column("templates", "hidden", nullable=True)
op.alter_column("templates_history", "hidden", nullable=True)
def downgrade():
2023-08-29 14:54:30 -07:00
op.alter_column("templates", "hidden", nullable=False)
op.alter_column("templates_history", "hidden", nullable=False)