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

20220921111849_remove_and_add_ci_job_variables_raw_with_new_default.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 736cd46382d9d8121f8d35fa9fd59bf06bce813c (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class RemoveAndAddCiJobVariablesRawWithNewDefault < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    remove_column :ci_job_variables, :raw, :boolean, null: false, default: true
    add_column :ci_job_variables, :raw, :boolean, null: false, default: false
  end
end