Files
grecia/db/migrate/20170428111355_add_ballot_line_count_to_investments.rb
2017-04-28 13:19:43 +02:00

6 lines
165 B
Ruby

class AddBallotLineCountToInvestments < ActiveRecord::Migration
def change
add_column :budget_investments, :ballot_lines_count, :integer, default: 0
end
end