debian-mirror-gitlab/db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb
2019-02-15 15:39:39 +05:30

16 lines
362 B
Ruby

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