Merge "Increase vim password column length"
This commit is contained in:
commit
3e238f1bc4
tacker/db
35
tacker/db/migration/alembic_migrations/versions/0ad3bbce1c19_increase_vim_password_size.py
Normal file
35
tacker/db/migration/alembic_migrations/versions/0ad3bbce1c19_increase_vim_password_size.py
Normal file
@ -0,0 +1,35 @@
|
||||
# Copyright 2016 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.
|
||||
#
|
||||
|
||||
"""increase_vim_password_size
|
||||
|
||||
Revision ID: 0ad3bbce1c19
|
||||
Revises: 0ad3bbce1c19
|
||||
Create Date: 2017-01-17 09:50:46.296206
|
||||
|
||||
"""
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '0ad3bbce1c19'
|
||||
down_revision = '0ad3bbce1c18'
|
||||
|
||||
|
||||
def upgrade(active_plugins=None, options=None):
|
||||
op.alter_column('vimauths',
|
||||
'password',
|
||||
type_=sa.String(length=255))
|
@ -1 +1 @@
|
||||
0ad3bbce1c18
|
||||
0ad3bbce1c19
|
||||
|
@ -60,7 +60,7 @@ class Vim(model_base.BASE,
|
||||
class VimAuth(model_base.BASE, models_v1.HasId):
|
||||
vim_id = sa.Column(types.Uuid, sa.ForeignKey('vims.id'),
|
||||
nullable=False)
|
||||
password = sa.Column(sa.String(128), nullable=False)
|
||||
password = sa.Column(sa.String(255), nullable=False)
|
||||
auth_url = sa.Column(sa.String(255), nullable=False)
|
||||
vim_project = sa.Column(types.Json, nullable=False)
|
||||
auth_cred = sa.Column(types.Json, nullable=False)
|
||||
|
Loading…
x
Reference in New Issue
Block a user