~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/db/sqlalchemy/migrate_repo/versions/005_drop_deploy_driver.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-03-06 13:23:35 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140306132335-5b49ji56jffxvtn4
Tags: 2014.1~b3-0ubuntu1
* New upstream release:
  - debian/patches/fix-requirements.patch: Dropped no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
 
# -*- encoding: utf-8 -*-
3
 
#
4
 
# Copyright 2013 Hewlett-Packard Development Company, L.P.
5
 
#
6
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
7
 
#    not use this file except in compliance with the License. You may obtain
8
 
#    a copy of the License at
9
 
#
10
 
#         http://www.apache.org/licenses/LICENSE-2.0
11
 
#
12
 
#    Unless required by applicable law or agreed to in writing, software
13
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15
 
#    License for the specific language governing permissions and limitations
16
 
#    under the License.
17
 
 
18
 
from sqlalchemy import Table, MetaData
19
 
 
20
 
 
21
 
def upgrade(migrate_engine):
22
 
    meta = MetaData()
23
 
    meta.bind = migrate_engine
24
 
 
25
 
    nodes = Table('nodes', meta, autoload=True)
26
 
 
27
 
    nodes.c.deploy_driver.drop()
28
 
    nodes.c.deploy_info.drop()
29
 
    nodes.c.control_driver.alter(name='driver')
30
 
    nodes.c.control_info.alter(name='driver_info')
31
 
 
32
 
 
33
 
def downgrade(migrate_engine):
34
 
    raise NotImplementedError('Downgrade from version 005 is unsupported.')