summaryrefslogtreecommitdiff
path: root/ironic/db/sqlalchemy/alembic
diff options
context:
space:
mode:
authorVladyslav Drok <vdrok@mirantis.com>2016-07-06 20:32:15 +0300
committerVladyslav Drok <vdrok@mirantis.com>2016-07-07 19:56:13 +0300
commit0a5bb693efe6a5b417c5ba9a912292b498438f84 (patch)
tree0565bf921cd8d687d6a46fab40d53523bd09d0a1 /ironic/db/sqlalchemy/alembic
parent22aba527fb045af58fa876f394c2bb923ed949c4 (diff)
downloadironic-0a5bb693efe6a5b417c5ba9a912292b498438f84.tar.gz
Add internal_info field to ports and portgroups
In case of ports, it is also added to the API, as a readonly field. It will be used for any port-specific internal information ironic needs to store inside the port object. In this change we start using it to store UUIDs of the cleaning ports that ironic creates, instead of fiddling with port.extra['vif_port_id'], as extra is intended for operator use only. Partial-bug: #1526403 Change-Id: Ib62c3e32305619d0c55f8ec7e45b067f0f0b32d4
Diffstat (limited to 'ironic/db/sqlalchemy/alembic')
-rw-r--r--ironic/db/sqlalchemy/alembic/versions/10b163d4481e_add_port_portgroup_internal_info.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/ironic/db/sqlalchemy/alembic/versions/10b163d4481e_add_port_portgroup_internal_info.py b/ironic/db/sqlalchemy/alembic/versions/10b163d4481e_add_port_portgroup_internal_info.py
new file mode 100644
index 000000000..9dd7bfa2e
--- /dev/null
+++ b/ironic/db/sqlalchemy/alembic/versions/10b163d4481e_add_port_portgroup_internal_info.py
@@ -0,0 +1,35 @@
+# 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 port portgroup internal info
+
+Revision ID: 10b163d4481e
+Revises: e294876e8028
+Create Date: 2016-07-06 17:43:55.846837
+
+"""
+
+# revision identifiers, used by Alembic.
+revision = '10b163d4481e'
+down_revision = 'e294876e8028'
+
+from alembic import op
+import sqlalchemy as sa
+
+
+def upgrade():
+ op.add_column('ports', sa.Column('internal_info',
+ sa.Text(),
+ nullable=True))
+ op.add_column('portgroups', sa.Column('internal_info',
+ sa.Text(),
+ nullable=True))