Tag the alembic migration revisions for Liberty

Previously when we had one repo with one alembic branch we would
create a milestone revision on that single branch. Now we have
multiple repos and expand/contract branches for each repo.
So from now on we tag the final revision on every branch when we make
a milestone release.

Change-Id: Ife8de94e40e4c2eb5d9cd672d7a65b0bd49ca0de
Partial-Bug: #1499033
This commit is contained in:
Abhishek Raut 2015-08-26 13:09:38 -07:00
parent b189f2719c
commit e49c6c6bc2
2 changed files with 15 additions and 3 deletions

View File

@ -21,11 +21,17 @@ Create Date: 2015-09-23 14:59:15.102609
"""
from alembic import op
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = '3c88bdea3054'
down_revision = '393bf843b96'
from alembic import op
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.LIBERTY]
def upgrade():

View File

@ -21,12 +21,18 @@ Create Date: 2015-08-14 02:04:09.807926
"""
from alembic import op
import sqlalchemy as sa
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = '279b70ac3ae8'
down_revision = '28430956782d'
from alembic import op
import sqlalchemy as sa
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.LIBERTY]
def upgrade():