Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20190103140724_make_legacy_false_default.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 154035f76cdddde3702d37cae1b8b02bc598d260 (plain)
1
2
3
4
5
6
7
8
9
# 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