mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
378 B
Ruby
11 lines
378 B
Ruby
class UseVdaysVpositionsDefaults < ActiveRecord::Migration
|
|
def up
|
|
change_column :conferences, :use_vpositions, :boolean, default: false
|
|
change_column :conferences, :use_vdays, :boolean, default: false
|
|
end
|
|
|
|
def down
|
|
change_column :conferences, :use_vpositions, :boolean, default: nil
|
|
change_column :conferences, :use_vdays, :boolean, default: nil
|
|
end
|
|
end
|