6 lines
176 B
Ruby
6 lines
176 B
Ruby
class AddIncompatibleToBudgetInvestments < ActiveRecord::Migration
|
|
def change
|
|
add_column :budget_investments, :incompatible, :bool, default: false, index: true
|
|
end
|
|
end
|