summaryrefslogtreecommitdiff
path: root/ironic/db/sqlalchemy/alembic
diff options
context:
space:
mode:
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))