2019-04-28 11:56:16 +03:00
|
|
|
class AddVoteDataToConferences < ActiveRecord::Migration[4.2]
|
2016-10-11 01:52:19 +03:00
|
|
|
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
|