summaryrefslogtreecommitdiff
path: root/db/migrate/20220525124104_add_raw_to_ci_pipeline_schedule_variables.rb
blob: c7a3b832552e209ca0c6f5ce5f24c0fecdaa1faf (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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