]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/plugins/globalize2/generators/templates/db_backend_migration.rb
Update to rails 2.3.8
[rails.git] / vendor / plugins / globalize2 / generators / templates / db_backend_migration.rb
diff --git a/vendor/plugins/globalize2/generators/templates/db_backend_migration.rb b/vendor/plugins/globalize2/generators/templates/db_backend_migration.rb
deleted file mode 100644 (file)
index d4513a5..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-class ActsAsTaggableMigration < ActiveRecord::Migration
-  def self.up
-    create_table :globalize_translations do |t|
-      t.string :locale, :null => false
-      t.string :key, :null => false
-      t.string :translation
-      t.timestamps
-    end
-
-# TODO: FINISH DOING MIGRATION -- stopped in the middle
-    
-    create_table :globalize_translations_map do |t|
-      t.string  :key, :null => false
-      t.integer :translation_id, :null => false
-    end
-    
-    add_index :taggings, :tag_id
-    add_index :taggings, [:taggable_id, :taggable_type]
-  end
-  
-  def self.down
-    drop_table :globalize_translations
-    drop_table :tags
-  end
-end