blob: a7cb956788bdbee5ff22e8fe52569f4da9b92f51 (
plain) (
tree)
|
|
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
|