]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/011_create_node_tags.rb
adds two migrations to create old_node_tags and node_tags table and indexes. Does...
[rails.git] / db / migrate / 011_create_node_tags.rb
diff --git a/db/migrate/011_create_node_tags.rb b/db/migrate/011_create_node_tags.rb
new file mode 100644 (file)
index 0000000..e0e7914
--- /dev/null
@@ -0,0 +1,21 @@
+class CreateNodeTags < ActiveRecord::Migration
+  def self.up
+    create_table "current_node_tags", myisam_table do |t|
+      t.column "id", :bigint, :limit => 64
+      t.column "sequence_id", :bigint, :limit => 11
+      t.column "k",  :string,                :default => "", :null => false
+      t.column "v",  :string,                :default => "", :null => false
+    end
+
+    add_index "current_node_tags", ["id"], :name => "current_node_tags_id_idx"
+    add_primary_key "current_node_tags", ["sequence_id", "id"]
+       
+    execute "CREATE FULLTEXT INDEX `current_node_tags_v_idx` ON `current_node_tags` (`v`)"
+
+
+  end
+
+  def self.down
+    drop_table :current_node_tags
+  end
+end