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,15 +9,15 @@ Create Date: 2016-10-31 15:17:16.716450
"""
# revision identifiers, used by Alembic.
revision = '0059_set_services_to_active'
down_revision = '0058_add_letters_flag'
revision = "0059_set_services_to_active"
down_revision = "0058_add_letters_flag"
from alembic import op
def upgrade():
op.execute('UPDATE services SET active = TRUE')
op.execute("UPDATE services SET active = TRUE")
def downgrade():
op.execute('UPDATE services SET active = FALSE')
op.execute("UPDATE services SET active = FALSE")