mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 14:11:10 +00:00
5 lines
175 B
Ruby
5 lines
175 B
Ruby
class AddUseDifficultyLevelsToConference < ActiveRecord::Migration
|
|
def change
|
|
add_column :conferences, :use_difficulty_levels, :boolean, :default => false
|
|
end
|
|
end
|