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.
8 lines
240 B
Ruby
8 lines
240 B
Ruby
class AddHelpLinkToBudgets < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :budgets, :help_link, :string
|
|
add_column :budgets, :budget_milestone_tags, :string
|
|
add_column :budgets, :budget_valuation_tags, :string
|
|
end
|
|
end
|