clarion/db/migrate/20140901103859_add_translation_tables_to_conferences.rb
2019-04-28 22:02:02 +03:00

15 lines
299 B
Ruby

class AddTranslationTablesToConferences < ActiveRecord::Migration[4.2]
def up
Conference.create_translation_table!({
title: :string,
description: :text,
}, {
migrate_data: true,
})
end
def down
Conference.drop_translation_table! migrate_data: true
end
end