This commit is contained in:
Kenneth Kehl
2023-08-29 14:54:30 -07:00
parent 19dcd7a48b
commit 1ecb747c6d
588 changed files with 34091 additions and 23580 deletions
@@ -9,19 +9,19 @@ from alembic import op
import sqlalchemy as sa
revision = '0338_add_notes_to_service'
down_revision = '0337_broadcast_msg_api'
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))
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')
op.drop_column("services_history", "notes")
op.drop_column("services", "notes")
# ### end Alembic commands ###