mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 20:54:03 +00:00
6 lines
146 B
Ruby
6 lines
146 B
Ruby
|
|
class AddBlindVotingToPrograms < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :programs, :blind_voting, :boolean, default: false
|
||
|
|
end
|
||
|
|
end
|