summaryrefslogtreecommitdiff
path: root/db/migrate/20220525124125_add_raw_to_ci_variables.rb
blob: 168cd107d1c414bcc1f11b9ee784bf548f69837e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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