gitlab-org--gitlab-foss/db/migrate/20200512085150_change_defau...

10 lines
275 B
Ruby

# frozen_string_literal: true
class ChangeDefaultValueOfProtectedCiVariablesOfApplicationSettingsToTrue < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
change_column_default :application_settings, :protected_ci_variables, from: false, to: true
end
end