""" Revision ID: 0246_notifications_index Revises: 0245_archived_flag_jobs Create Date: 2018-12-12 12:00:09.770775 """ from alembic import op from sqlalchemy import text revision = "0246_notifications_index" down_revision = "0245_archived_flag_jobs" def upgrade(): conn = op.get_bind() query = text( "CREATE INDEX IF NOT EXISTS ix_notifications_service_created_at ON notifications (service_id, created_at)" ) conn.execute(query) def downgrade(): conn = op.get_bind() query = text("DROP INDEX IF EXISTS ix_notifications_service_created_at") conn.execute(query)