debian-mirror-gitlab/db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb
2021-06-08 01:23:25 +05:30

27 lines
526 B
Ruby

# frozen_string_literal: true
class BackfillCiBuildTraceChunksForBigintConversion < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
TABLE = :ci_build_trace_chunks
COLUMNS = %i(build_id)
def up
return unless should_run?
backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
end
def down
return unless should_run?
revert_backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
end
private
def should_run?
Gitlab.dev_or_test_env? || Gitlab.com?
end
end