mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 06:32:11 -05:00
28 lines
646 B
Python
28 lines
646 B
Python
"""
|
|
|
|
Revision ID: 0297_template_redacted_fix
|
|
Revises: 0296_agreement_signed_by_person
|
|
Create Date: 2019-06-25 17:02:14.350064
|
|
|
|
"""
|
|
from alembic import op
|
|
|
|
revision = "0297_template_redacted_fix"
|
|
down_revision = "0296_agreement_signed_by_person"
|
|
|
|
|
|
def upgrade():
|
|
op.execute(
|
|
"""
|
|
INSERT INTO template_redacted (template_id, redact_personalisation, updated_at, updated_by_id)
|
|
SELECT templates.id, FALSE, now(), templates.created_by_id
|
|
FROM templates
|
|
WHERE templates.id NOT IN (SELECT template_id FROM template_redacted WHERE template_id = templates.id)
|
|
;
|
|
"""
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
pass
|