Add missing index on retries_remaining

This commit is contained in:
Joseph Schorr 2015-08-04 18:01:28 -04:00
parent af1d4e8dc8
commit 9f2d6282bd
2 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,26 @@
"""Add index to retries_remaining
Revision ID: 246df01a6d51
Revises: 5232a5610a0a
Create Date: 2015-08-04 17:59:42.262877
"""
# revision identifiers, used by Alembic.
revision = '246df01a6d51'
down_revision = '5232a5610a0a'
from alembic import op
import sqlalchemy as sa
def upgrade(tables):
### commands auto generated by Alembic - please adjust! ###
op.create_index('queueitem_retries_remaining', 'queueitem', ['retries_remaining'], unique=False)
### end Alembic commands ###
def downgrade(tables):
### commands auto generated by Alembic - please adjust! ###
op.drop_index('queueitem_retries_remaining', table_name='queueitem')
### end Alembic commands ###