There are some rules which only affect migration files, and we cannot enable them if we're excluding those files from being inspected. We're also changing migrations related to the Rails/TimeZone rule slightly because these fields were already changed afterwards, so we aren't changing the schema.
17 lines
310 B
Ruby
17 lines
310 B
Ruby
class AddPollTranslations < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
Poll.create_translation_table!(
|
|
{
|
|
name: :string,
|
|
summary: :text,
|
|
description: :text
|
|
},
|
|
{ migrate_data: true }
|
|
)
|
|
end
|
|
|
|
def self.down
|
|
Poll.drop_translation_table!
|
|
end
|
|
end
|