Files
nairobi/db/migrate/20161230172816_remove_valuating_from_budgets.rb
2016-12-30 18:41:35 +01:00

6 lines
128 B
Ruby

class RemoveValuatingFromBudgets < ActiveRecord::Migration
def change
remove_column :budgets, :valuating, :bool
end
end