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

« back to all changes in this revision

Viewing changes to ironic/db/sqlalchemy/alembic/versions/242cc6a923b3_add_node_maintenance_reason.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-01-05 12:21:37 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20150105122137-171bqrdpcxqipunk
Tags: 2015.1~b1-0ubuntu1
* New upstream beta release:
  - d/control: Align version requirements with upstream release.
* d/watch: Update uversionmangle to deal with kilo beta versioning
  changes.
* d/control: Bumped Standards-Version to 3.9.6, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
2
#    not use this file except in compliance with the License. You may obtain
 
3
#    a copy of the License at
 
4
#
 
5
#         http://www.apache.org/licenses/LICENSE-2.0
 
6
#
 
7
#    Unless required by applicable law or agreed to in writing, software
 
8
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
9
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
10
#    License for the specific language governing permissions and limitations
 
11
#    under the License.
 
12
 
 
13
"""Add Node.maintenance_reason
 
14
 
 
15
Revision ID: 242cc6a923b3
 
16
Revises: 487deb87cc9d
 
17
Create Date: 2014-10-15 23:00:43.164061
 
18
 
 
19
"""
 
20
 
 
21
# revision identifiers, used by Alembic.
 
22
revision = '242cc6a923b3'
 
23
down_revision = '487deb87cc9d'
 
24
 
 
25
from alembic import op
 
26
import sqlalchemy as sa
 
27
 
 
28
 
 
29
def upgrade():
 
30
    op.add_column('nodes', sa.Column('maintenance_reason',
 
31
                                     sa.Text(),
 
32
                                     nullable=True))
 
33
 
 
34
 
 
35
def downgrade():
 
36
    op.drop_column('nodes', 'maintenance_reason')