2017-02-28 11:28:39 +00:00
|
|
|
"""empty message
|
|
|
|
|
|
|
|
|
|
Revision ID: 0067_service_contact_block
|
2023-07-19 09:19:40 -07:00
|
|
|
Revises: 0065_users_current_session_id
|
2017-02-28 11:28:39 +00:00
|
|
|
Create Date: 2017-02-28 11:23:40.299110
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
2023-08-29 14:54:30 -07:00
|
|
|
revision = "0067_service_contact_block"
|
|
|
|
|
down_revision = "0065_users_current_session_id"
|
2017-02-28 11:28:39 +00:00
|
|
|
|
|
|
|
|
import sqlalchemy as sa
|
2023-12-08 21:43:52 -05:00
|
|
|
from alembic import op
|
2017-02-28 11:28:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
2023-08-29 14:54:30 -07:00
|
|
|
op.add_column(
|
|
|
|
|
"services", sa.Column("letter_contact_block", sa.Text(), nullable=True)
|
|
|
|
|
)
|
|
|
|
|
op.add_column(
|
|
|
|
|
"services_history", sa.Column("letter_contact_block", sa.Text(), nullable=True)
|
|
|
|
|
)
|
2017-02-28 11:28:39 +00:00
|
|
|
### end Alembic commands ###
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
2023-08-29 14:54:30 -07:00
|
|
|
op.drop_column("services_history", "letter_contact_block")
|
|
|
|
|
op.drop_column("services", "letter_contact_block")
|
2017-02-28 11:28:39 +00:00
|
|
|
### end Alembic commands ###
|