Some fields from Budget are translatable and we no longer need them. This commit will remove the annoying deprecation warning thrown by Globalize gem after gem version update.
6 lines
149 B
Ruby
6 lines
149 B
Ruby
class RemoveDeprecatedTranslatableFieldsFromBudgets < ActiveRecord::Migration[4.2]
|
|
def change
|
|
remove_column :budgets, :name, :string
|
|
end
|
|
end
|