Add mtu attributes to network model

Database changes to support including mtu as
part of the network model.

Change-Id: Id6410de8844d3476893647b22baa7f1a96f1df8b
Partially-Implements: blueprint mtu-selection-and-advertisement
This commit is contained in:
Pradeep Kilambi 2015-02-05 17:06:21 -08:00
parent 5c9e77ae70
commit 05b07762de
4 changed files with 42 additions and 2 deletions

View File

@ -0,0 +1,38 @@
# Copyright 2015 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
"""add mtu attributes to network
Revision ID: 43763a9618fd
Revises: 16cdf118d31d
Create Date: 2015-02-05 17:44:14.161377
"""
# revision identifiers, used by Alembic.
revision = '43763a9618fd'
down_revision = '16cdf118d31d'
from alembic import op
import sqlalchemy as sa
def upgrade():
op.add_column('networks', sa.Column('mtu', sa.Integer(),
nullable=True))
def downgrade():
op.drop_column('networks', 'mtu')

View File

@ -1 +1 @@
16cdf118d31d
43763a9618fd

View File

@ -219,3 +219,4 @@ class Network(model_base.BASEV2, HasId, HasTenant):
status = sa.Column(sa.String(16))
admin_state_up = sa.Column(sa.Boolean)
shared = sa.Column(sa.Boolean)
mtu = sa.Column(sa.Integer, nullable=True)

View File

@ -4181,7 +4181,8 @@ class DbModelTestCase(base.BaseTestCase):
exp_middle = "[object at %x]" % id(network)
exp_end_with = (" {tenant_id=None, id=None, "
"name='net_net', status='OK', "
"admin_state_up=True, shared=None}>")
"admin_state_up=True, shared=None, "
"mtu=None}>")
final_exp = exp_start_with + exp_middle + exp_end_with
self.assertEqual(actual_repr_output, final_exp)