debian-mirror-gitlab/db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb
2018-11-20 20:47:30 +05:30

16 lines
357 B
Ruby

# frozen_string_literal: true
class ChangeDefaultOfAutoDevopsInstanceWide < ActiveRecord::Migration
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