Files
nairobi/db/migrate/20151030182217_add_physical_votes_to_proposals.rb
2015-10-30 19:26:25 +01:00

6 lines
148 B
Ruby

class AddPhysicalVotesToProposals < ActiveRecord::Migration
def change
add_column :proposals, :physical_votes, :integer, default: 0
end
end