Skip to content

Commit

Permalink
Reshuffle the greenwave_failed migration.
Browse files Browse the repository at this point in the history
I accidentally put the migration that adds the greenwave_failed
value to the TestGatingStatus enum at the end of the list of
migrations on the develop branch. This was problematic when I
tried to backport the patch to the 3.13 branch, which does not
have the referenced down_revision, which is a migration that will
be part of the upcoming 4.0 release.

This commit reshuffles the order of migrations so that the new
migrations is inserted at the end of the 3.13 branch head, and
just before the new migrations in 4.0.

Signed-off-by: Randy Barlow <[email protected]>
  • Loading branch information
bowlofeggs committed Feb 28, 2019
1 parent 71d1385 commit 7e780c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
Add the greenwave_failed enum to TestGatingStatus.
Revision ID: 8c4d6aad9b78
Revises: aae0d29d49b7
Revises: 9991cf10ec50
Create Date: 2019-02-26 22:38:15.420477
"""
from alembic import op
Expand All @@ -28,7 +28,7 @@

# revision identifiers, used by Alembic.
revision = '8c4d6aad9b78'
down_revision = 'aae0d29d49b7'
down_revision = '9991cf10ec50'


def upgrade():
Expand Down

0 comments on commit 7e780c7

Please sign in to comment.