debian-mirror-gitlab/db/migrate/20220525124104_add_raw_to_ci_pipeline_schedule_variables.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
246 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# 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