~markmc/nova/flat-dhcp-without-bridge-iface

« back to all changes in this revision

Viewing changes to nova/db/sqlalchemy/migrate_repo/versions/039_add_instances_accessip.py

  • Committer: Tarmac
  • Author(s): Alex Meade
  • Date: 2011-08-22 03:17:04 UTC
  • mfrom: (1450.6.17 servers-accessip)
  • Revision ID: tarmac-20110822031704-3m2u6o62ut0gqyzo
Adds accessIPv4 and accessIPv6 to servers requests and responses as per the current spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2011 OpenStack LLC.
 
2
#
 
3
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
4
#    not use this file except in compliance with the License. You may obtain
 
5
#    a copy of the License at
 
6
#
 
7
#         http://www.apache.org/licenses/LICENSE-2.0
 
8
#
 
9
#    Unless required by applicable law or agreed to in writing, software
 
10
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
11
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
12
#    License for the specific language governing permissions and limitations
 
13
#    under the License.
 
14
 
 
15
from sqlalchemy import Column, Integer, MetaData, Table, String
 
16
 
 
17
meta = MetaData()
 
18
 
 
19
accessIPv4 = Column(
 
20
    'access_ip_v4',
 
21
    String(length=255, convert_unicode=False, assert_unicode=None,
 
22
           unicode_error=None, _warn_on_bytestring=False),
 
23
    nullable=True)
 
24
 
 
25
accessIPv6 = Column(
 
26
    'access_ip_v6',
 
27
    String(length=255, convert_unicode=False, assert_unicode=None,
 
28
           unicode_error=None, _warn_on_bytestring=False),
 
29
    nullable=True)
 
30
 
 
31
instances = Table('instances', meta,
 
32
        Column('id', Integer(), primary_key=True, nullable=False),
 
33
        )
 
34
 
 
35
 
 
36
def upgrade(migrate_engine):
 
37
    # Upgrade operations go here. Don't create your own engine;
 
38
    # bind migrate_engine to your metadata
 
39
    meta.bind = migrate_engine
 
40
    instances.create_column(accessIPv4)
 
41
    instances.create_column(accessIPv6)
 
42
 
 
43
 
 
44
def downgrade(migrate_engine):
 
45
    # Operations to reverse the above upgrade go here.
 
46
    meta.bind = migrate_engine
 
47
    instances.drop_column('access_ip_v4')
 
48
    instances.drop_column('access_ip_v6')