magnum/magnum/db/sqlalchemy/alembic/versions/5518af8dbc21_rename_cert_uu...

44 lines
1.5 KiB
Python

# 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.
"""Rename cert_uuid
Revision ID: 5518af8dbc21
Revises: 6f21dc920bb
Create Date: 2015-08-28 13:13:19.747625
"""
# revision identifiers, used by Alembic.
revision = '5518af8dbc21'
down_revision = '6f21dc920bb'
from alembic import op # noqa: E402 # noqa: E402
from oslo_db.sqlalchemy.types import String # noqa: E402
import sqlalchemy as sa # noqa: E402
from sqlalchemy.dialects.mysql import TEXT # noqa: E402
def upgrade():
op.alter_column('bay', 'ca_cert_uuid',
new_column_name='ca_cert_ref',
existing_type=sa.String(length=36),
type_=String(512, mysql_ndb_type=TEXT),
nullable=True)
op.alter_column('bay', 'magnum_cert_uuid',
new_column_name='magnum_cert_ref',
existing_type=sa.String(length=36),
type_=String(512, mysql_ndb_type=TEXT),
nullable=True)