Files
grecia/db/migrate/20180731173147_add_poll_question_translations.rb
Javi Martín be25e5fc45 Use migrate_data option for globalize
This way the task to migrate the data doesn't have to be run manually if
these migrations weren't already executed.
2018-10-23 16:29:13 +02:00

15 lines
259 B
Ruby

class AddPollQuestionTranslations < ActiveRecord::Migration
def self.up
Poll::Question.create_translation_table!(
{ title: :string },
{ migrate_data: true }
)
end
def self.down
Poll::Question.drop_translation_table!
end
end