osem-fcy/db/migrate/20160427104237_add_blind_voting_to_programs.rb

7 lines
177 B
Ruby

# frozen_string_literal: true
class AddBlindVotingToPrograms < ActiveRecord::Migration
def change
add_column :programs, :blind_voting, :boolean, default: false
end
end