15 lines
453 B
Ruby
15 lines
453 B
Ruby
|
class AddTranslationTablesToConferences < ActiveRecord::Migration
|
||
|
def up
|
||
|
Conference.create_translation_table!({
|
||
|
:title => :string,
|
||
|
:description => :text
|
||
|
}, {
|
||
|
:migrate_data => true
|
||
|
})
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
Post.drop_translation_table! :migrate_data => true
|
||
|
end
|
||
|
end
|