We will use this field to show/hide all price references in the Budgets with the final voting style: Approval.
6 lines
145 B
Ruby
6 lines
145 B
Ruby
class AddHideMoneyToBudgets < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :budgets, :hide_money, :boolean, default: false
|
|
end
|
|
end
|