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

8 lines
182 B
Ruby
Raw Normal View History

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