mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-30 06:21:50 -05:00
Merge branch 'master' into tech-failures
This commit is contained in:
28
migrations/versions/0016_reply_to_email.py
Normal file
28
migrations/versions/0016_reply_to_email.py
Normal file
@@ -0,0 +1,28 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 0016_reply_to_email
|
||||
Revises: 0015_fix_template_data
|
||||
Create Date: 2016-05-17 09:59:49.032865
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '0016_reply_to_email'
|
||||
down_revision = '0015_fix_template_data'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
def upgrade():
|
||||
### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('services', sa.Column('reply_to_email_address', sa.Text(), nullable=True))
|
||||
op.add_column('services_history', sa.Column('reply_to_email_address', sa.Text(), nullable=True))
|
||||
### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('services_history', 'reply_to_email_address')
|
||||
op.drop_column('services', 'reply_to_email_address')
|
||||
### end Alembic commands ###
|
||||
Reference in New Issue
Block a user