adds ballot_lines counter to investments

This commit is contained in:
Juanjo Bazán
2017-04-28 13:19:43 +02:00
parent 7e6077e152
commit a4bfe9c50c
3 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddBallotLineCountToInvestments < ActiveRecord::Migration
def change
add_column :budget_investments, :ballot_lines_count, :integer, default: 0
end
end