mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 08:12:27 -05:00
28 lines
736 B
Python
28 lines
736 B
Python
|
|
"""
|
||
|
|
|
||
|
|
Revision ID: 0338_add_notes_to_service
|
||
|
|
Revises: 0337_broadcast_msg_api
|
||
|
|
Create Date: 2021-01-13 11:50:06.333369
|
||
|
|
|
||
|
|
"""
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
revision = '0338_add_notes_to_service'
|
||
|
|
down_revision = '0337_broadcast_msg_api'
|
||
|
|
|
||
|
|
|
||
|
|
def upgrade():
|
||
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
|
op.add_column('services', sa.Column('notes', sa.Text(), nullable=True))
|
||
|
|
op.add_column('services_history', sa.Column('notes', sa.Text(), nullable=True))
|
||
|
|
# ### end Alembic commands ###
|
||
|
|
|
||
|
|
|
||
|
|
def downgrade():
|
||
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
|
op.drop_column('services_history', 'notes')
|
||
|
|
op.drop_column('services', 'notes')
|
||
|
|
# ### end Alembic commands ###
|