10 lines
280 B
Ruby
10 lines
280 B
Ruby
|
class DisableUseCachedChrootByDefault < ActiveRecord::Migration
|
||
|
def up
|
||
|
change_column :build_lists, :use_cached_chroot, :boolean, null: false, default: false
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
change_column :build_lists, :use_cached_chroot, :boolean, null: false, default: true
|
||
|
end
|
||
|
end
|