aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120601151114_create_category_translations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20120601151114_create_category_translations.rb')
-rw-r--r--db/migrate/20120601151114_create_category_translations.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20120601151114_create_category_translations.rb b/db/migrate/20120601151114_create_category_translations.rb
deleted file mode 100644
index a7cb956..0000000
--- a/db/migrate/20120601151114_create_category_translations.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class CreateCategoryTranslations < ActiveRecord::Migration
- def up
- Refinery::Blog::Category.create_translation_table!({
- :title => :string,
- :slug => :string
- }, {
- :migrate_data => true
- })
- end
-
- def down
- Refinery::Blog::Category.drop_translation_table! :migrate_data => true
- end
-end