diff options
| author | Rick Harris <rconradharris@gmail.com> | 2011-09-14 15:52:30 +0000 |
|---|---|---|
| committer | Rick Harris <rconradharris@gmail.com> | 2011-09-14 15:52:30 +0000 |
| commit | 2d4181e483fbba4c08458892fd2dcb228700ecf5 (patch) | |
| tree | 17046269c7dbc26c2b2435c21210104e4900934b | |
| parent | 61e5825a43fff1ad60dcd26454dc4881bdc13ef6 (diff) | |
| download | nova-2d4181e483fbba4c08458892fd2dcb228700ecf5.tar.gz nova-2d4181e483fbba4c08458892fd2dcb228700ecf5.tar.xz nova-2d4181e483fbba4c08458892fd2dcb228700ecf5.zip | |
Adding migration for instance progress
| -rw-r--r-- | nova/db/sqlalchemy/migrate_repo/versions/046_add_instances_progress.py | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/nova/db/sqlalchemy/migrate_repo/versions/046_add_instances_progress.py b/nova/db/sqlalchemy/migrate_repo/versions/046_add_instances_progress.py new file mode 100644 index 000000000..d23d52e80 --- /dev/null +++ b/nova/db/sqlalchemy/migrate_repo/versions/046_add_instances_progress.py @@ -0,0 +1,43 @@ +# vim: tabstop=4 shiftwidth=4 softtabstop=4 + +# Copyright 2010 OpenStack LLC. +# +# 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. + +from sqlalchemy import * +from migrate import * + +from nova import log as logging + +meta = MetaData() + +instances = Table('instances', meta, + Column("id", Integer(), primary_key=True, nullable=False)) + +# Add progress column to instances table +progress = Column('progress', Integer()) + + +def upgrade(migrate_engine): + meta.bind = migrate_engine + + try: + instances.create_column(progress) + except Exception: + logging.error(_("progress column not added to instances table")) + raise + + +def downgrade(migrate_engine): + meta.bind = migrate_engine + instances.drop_column(progress) |
