Files
grecia/db/migrate/20210311110036_add_hide_money_to_budgets.rb
decabeza c98e8a004f Add new 'hide_money' column to the budgets' table
We will use this field to show/hide all price references in the Budgets
with the final voting style: Approval.
2022-02-25 16:22:52 +01:00

6 lines
145 B
Ruby

class AddHideMoneyToBudgets < ActiveRecord::Migration[5.1]
def change
add_column :budgets, :hide_money, :boolean, default: false
end
end