aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120530102901_create_blog_translations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20120530102901_create_blog_translations.rb')
-rw-r--r--db/migrate/20120530102901_create_blog_translations.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20120530102901_create_blog_translations.rb b/db/migrate/20120530102901_create_blog_translations.rb
deleted file mode 100644
index c301f42..0000000
--- a/db/migrate/20120530102901_create_blog_translations.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-class CreateBlogTranslations < ActiveRecord::Migration
- def up
- Refinery::Blog::Post.create_translation_table!({
- :body => :text,
- :custom_teaser => :text,
- :custom_url => :string,
- :slug => :string,
- :title => :string
- }, {
- :migrate_data => true
- })
- end
-
- def down
- Refinery::Blog::Post.drop_translation_table! :migrate_data => true
- end
-end