gitlab-org--gitlab-foss/db/migrate/20190103140724_make_legacy_false_default.rb
Dylan Griffith 9275e1dfbf Make RBAC enabled default for new clusters
Many changes were also made to tests that expected this to default to
false.
2019-01-04 11:49:13 +01:00

9 lines
220 B
Ruby

# frozen_string_literal: true
class MakeLegacyFalseDefault < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
change_column_default :cluster_providers_gcp, :legacy_abac, from: true, to: false
end
end