summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-11-21 17:54:55 +0000
committerGerrit Code Review <review@openstack.org>2012-11-21 17:54:55 +0000
commit2622f40af702ddaa76fd6fa8519f6f2438f85da8 (patch)
tree68a25e0091e6c1d61ab186b3508b269ad77ad5a1
parentbf77743c53f805dad8732d453b1ec0b5eff1be4d (diff)
parentc836d87000d70ceb2e652eb6a4fec35e34bc9a02 (diff)
downloadnova-2622f40af702ddaa76fd6fa8519f6f2438f85da8.tar.gz
nova-2622f40af702ddaa76fd6fa8519f6f2438f85da8.tar.xz
nova-2622f40af702ddaa76fd6fa8519f6f2438f85da8.zip
Merge "Adds missing index migrations by instance/status."
-rw-r--r--nova/db/sqlalchemy/migrate_repo/versions/142_add_migrations_instance_status_index.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/nova/db/sqlalchemy/migrate_repo/versions/142_add_migrations_instance_status_index.py b/nova/db/sqlalchemy/migrate_repo/versions/142_add_migrations_instance_status_index.py
new file mode 100644
index 000000000..7aa358a25
--- /dev/null
+++ b/nova/db/sqlalchemy/migrate_repo/versions/142_add_migrations_instance_status_index.py
@@ -0,0 +1,40 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright (c) 2012 Red Hat, Inc.
+# All Rights Reserved.
+#
+# 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 Index, MetaData, Table
+
+
+def upgrade(migrate_engine):
+ meta = MetaData()
+ meta.bind = migrate_engine
+
+ # Based on migration_get_by_instance_and_status
+ # from: nova/db/sqlalchemy/api.py
+ t = Table('migrations', meta, autoload=True)
+ i = Index('migrations_instance_uuid_and_status_idx', t.c.deleted,
+ t.c.instance_uuid, t.c.status)
+ i.create(migrate_engine)
+
+
+def downgrade(migrate_engine):
+ meta = MetaData()
+ meta.bind = migrate_engine
+
+ t = Table('migrations', meta, autoload=True)
+ i = Index('migrations_instance_uuid_and_status_idx', t.c.deleted,
+ t.c.instance_uuid, t.c.status)
+ i.drop(migrate_engine)