debian-mirror-gitlab/db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb

16 lines
362 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2019-02-15 15:39:39 +05:30
class ChangeDefaultOfAutoDevopsInstanceWide < ActiveRecord::Migration[4.2]
2018-11-20 20:47:30 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
change_column_default :application_settings, :auto_devops_enabled, true
end
def down
change_column_default :application_settings, :auto_devops_enabled, false
end
end