]> git.openstreetmap.org Git - rails.git/commitdiff
When adding new primary keys, drop the old indexes which are no longer
authorTom Hughes <tom@compton.nu>
Sun, 4 May 2008 10:35:59 +0000 (10:35 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 4 May 2008 10:35:59 +0000 (10:35 +0000)
needed as they are a prefix of the new primary key.

db/migrate/015_key_constraints.rb

index 6a070b2da84f8f81b5b9efeee44c119f46b883fd..40f98be02b9eb3dd61cc0538612fff288d353492 100644 (file)
@@ -11,6 +11,15 @@ class KeyConstraints < ActiveRecord::Migration
 
     add_primary_key :nodes, [:id, :version]
 
+    # Remove indexes superseded by primary keys
+    remove_index :current_way_tags, :name => :current_way_tags_id_idx
+    remove_index :current_relation_tags, :name => :current_relation_tags_id_idx
+
+    remove_index :way_tags, :name => :way_tags_id_version_idx
+    remove_index :relation_tags, :name => :relation_tags_id_version_idx
+
+    remove_index :nodes, :name => :nodes_uid_idx
+
     # Foreign keys (between ways, way_tags, way_nodes, etc.)
     add_foreign_key :current_node_tags, [:id], :current_nodes
     add_foreign_key :node_tags, [:id, :version], :nodes