clarion/db/migrate/20161010163747_add_vote_dat...

8 lines
263 B
Ruby
Raw Normal View History

2016-10-11 01:52:19 +03:00
class AddVoteDataToConferences < ActiveRecord::Migration
def change
add_column :conferences, :vote_data_endpoint, :string
add_column :conferences, :number_of_ballots_cast, :integer
add_column :conferences, :vote_data_updated_at, :datetime
end
end