Enable blind voting
This commit is contained in:
parent
8388385b51
commit
59eeb7edbd
17 changed files with 391 additions and 108 deletions
|
|
@ -0,0 +1,5 @@
|
|||
class AddBlindVotingToPrograms < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :programs, :blind_voting, :boolean, default: false
|
||||
end
|
||||
end
|
||||
6
db/migrate/20160427104238_add_voting_dates_to_program.rb
Normal file
6
db/migrate/20160427104238_add_voting_dates_to_program.rb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
class AddVotingDatesToProgram < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :programs, :voting_start_date, :datetime
|
||||
add_column :programs, :voting_end_date, :datetime
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue