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

8 lines
177 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-07-05 16:44:53 +03:00
class AddBlindVotingToPrograms < ActiveRecord::Migration
def change
add_column :programs, :blind_voting, :boolean, default: false
end
end