Fix merge conflicts in tests.

Update new migrations scripts to fix conflict in with script names.
This commit is contained in:
Rebecca Law
2016-09-02 12:01:38 +01:00
parent 8f3e8181fe
commit e3fa8bffd7
3 changed files with 8 additions and 9 deletions
@@ -0,0 +1,22 @@
"""empty message
Revision ID: 0051_set_job_status
Revises: 0050_index_for_stats
Create Date: 2016-08-24 13:21:51.744526
"""
# revision identifiers, used by Alembic.
revision = '0051_set_job_status'
down_revision = '0050_index_for_stats'
from alembic import op
def upgrade():
op.execute("update jobs set job_status = status where job_status is null")
pass
def downgrade():
pass