6 lines
128 B
Ruby
6 lines
128 B
Ruby
class RemoveValuatingFromBudgets < ActiveRecord::Migration
|
|
def change
|
|
remove_column :budgets, :valuating, :bool
|
|
end
|
|
end
|