summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220921111849_remove_and_add_ci_job_variables_raw_with_new_default.rb
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