Remove import extension dep from db migration
Change-Id: Ic8907a9960807b30d8b89df0ee29e42b26a7675a Closes-bug:1285294
This commit is contained in:
parent
4a85c90579
commit
b22ac1d899
@ -35,7 +35,6 @@ from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
from neutron.db import migration
|
||||
from neutron.extensions import portbindings
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
@ -45,7 +44,7 @@ def upgrade(active_plugins=None, options=None):
|
||||
op.add_column('ml2_port_bindings',
|
||||
sa.Column('vnic_type', sa.String(length=64),
|
||||
nullable=False,
|
||||
server_default=portbindings.VNIC_NORMAL))
|
||||
server_default='normal'))
|
||||
|
||||
|
||||
def downgrade(active_plugins=None, options=None):
|
||||
|
Loading…
Reference in New Issue
Block a user