Change the order of migrations to allow migration code to work with the updated model.

This commit is contained in:
Jake Moshenko 2014-11-19 15:58:47 -05:00
parent aa62395777
commit ac0d0ce36a
2 changed files with 4 additions and 4 deletions

View file

@ -1,14 +1,14 @@
"""add uuid field to user """add uuid field to user
Revision ID: 17f11e265e13 Revision ID: 17f11e265e13
Revises: 2fb36d4be80d Revises: 313d297811c4
Create Date: 2014-11-11 14:32:54.866188 Create Date: 2014-11-11 14:32:54.866188
""" """
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
revision = '17f11e265e13' revision = '17f11e265e13'
down_revision = '2fb36d4be80d' down_revision = '313d297811c4'
from alembic import op from alembic import op
import sqlalchemy as sa import sqlalchemy as sa

View file

@ -1,14 +1,14 @@
"""Translate the queue names to reference namespace by id, remove the namespace column. """Translate the queue names to reference namespace by id, remove the namespace column.
Revision ID: 2430f55c41d5 Revision ID: 2430f55c41d5
Revises: 313d297811c4 Revises: 17f11e265e13
Create Date: 2014-09-30 17:31:33.308490 Create Date: 2014-09-30 17:31:33.308490
""" """
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
revision = '2fb36d4be80d' revision = '2fb36d4be80d'
down_revision = '313d297811c4' down_revision = '17f11e265e13'
from alembic import op from alembic import op
import sqlalchemy as sa import sqlalchemy as sa