]> git.openstreetmap.org Git - rails.git/commitdiff
split_node_tags: Forgot to migrate current_way_tags to InnoDB.
authorGabriel Ebner <gabriel@svn.openstreetmap.org>
Sat, 3 May 2008 16:40:51 +0000 (16:40 +0000)
committerGabriel Ebner <gabriel@svn.openstreetmap.org>
Sat, 3 May 2008 16:40:51 +0000 (16:40 +0000)
db/migrate/014_move_to_innodb.rb

index 38c741ccad832dfd2baf534b925fddd235d27575..57065a594fa303a891147b5e16045f4bc468f5a9 100644 (file)
@@ -1,7 +1,7 @@
 class MoveToInnodb < ActiveRecord::Migration
   @@conv_tables = ['nodes', 'ways', 'way_tags', 'way_nodes',
 class MoveToInnodb < ActiveRecord::Migration
   @@conv_tables = ['nodes', 'ways', 'way_tags', 'way_nodes',
-    'current_way_nodes', 'relation_members', 'relations',
-    'relation_tags', 'current_relation_tags']
+    'current_way_nodes', 'current_way_tags', 'relation_members',
+    'relations', 'relation_tags', 'current_relation_tags']
 
   @@ver_tbl = ['nodes', 'ways', 'relations']
 
 
   @@ver_tbl = ['nodes', 'ways', 'relations']
 
@@ -25,5 +25,6 @@ class MoveToInnodb < ActiveRecord::Migration
   end
 
   def self.down
   end
 
   def self.down
+    raise IrreversibleMigration.new
   end
 end
   end
 end