Files
grecia/db/migrate/20200831112342_remove_deprecated_fields_from_budget_investments.rb
taitus e39b72d945 Remove deprecated attributes from Investments
Some fields from Investment are deprecated and we no longer need them.
2020-09-08 12:12:43 +02:00

7 lines
240 B
Ruby

class RemoveDeprecatedFieldsFromBudgetInvestments < ActiveRecord::Migration[5.1]
def change
remove_column :budget_investments, :deprecated_title, :string
remove_column :budget_investments, :deprecated_description, :text
end
end