summaryrefslogtreecommitdiff
path: root/db/migrate/20210422022825_initialize_conversion_of_ci_sources_pipelines_source_job_id_to_bigint.rb
blob: ea716afe84bddee8a0e7c9009e6f16383a1b6df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class InitializeConversionOfCiSourcesPipelinesSourceJobIdToBigint < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  def up
    # Foreign key that references ci_builds.id
    initialize_conversion_of_integer_to_bigint :ci_sources_pipelines, :source_job_id
  end

  def down
    trigger_name = rename_trigger_name(:ci_sources_pipelines, :source_job_id, :source_job_id_convert_to_bigint)

    remove_rename_triggers :ci_sources_pipelines, trigger_name

    remove_column :ci_sources_pipelines, :source_job_id_convert_to_bigint
  end
end