Add choose_postage service permission and add postage to Template

This commit is contained in:
Pea Tyczynska
2018-12-14 12:45:58 +00:00
parent 6cf5eee485
commit 52a7dcf86c
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
"""
Revision ID: 0248_enable_choose_postage
Revises: 0247_another_letter_org
Create Date: 2018-12-14 12:09:31.375634
"""
from alembic import op
import sqlalchemy as sa
revision = '0248_enable_choose_postage'
down_revision = '0247_another_letter_org'
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.execute("INSERT INTO service_permission_types VALUES ('choose_postage')")
op.add_column('templates', sa.Column('postage', sa.String(), nullable=True))
op.add_column('templates_history', sa.Column('postage', sa.String(), nullable=True))
op.execute("""
ALTER TABLE templates ADD CONSTRAINT "chk_templates_postage_null"
CHECK (
CASE WHEN template_type = 'letter' THEN
postage in ('first', 'second') OR
postage is null
ELSE
postage is null
END
)
""")
op.execute("""
ALTER TABLE templates_history ADD CONSTRAINT "chk_templates_history_postage_null"
CHECK (
CASE WHEN template_type = 'letter' THEN
postage in ('first', 'second') OR
postage is null
ELSE
postage is null
END
)
""")
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_constraint('chk_templates_history_postage_null', 'templates_history', type_='check')
op.drop_constraint('chk_templates_postage_null', 'templates', type_='check')
op.drop_column('templates_history', 'postage')
op.drop_column('templates', 'postage')
op.execute("DELETE FROM service_permissions WHERE permission = 'choose_postage'")
op.execute("DELETE FROM service_permission_types WHERE name = 'choose_postage'")
# ### end Alembic commands ###