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

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

  TABLE = :deployments
  COLUMNS = %i(deployable_id)

  def up
    backfill_conversion_of_integer_to_bigint TABLE, COLUMNS
  end

  def down
    revert_backfill_conversion_of_integer_to_bigint TABLE, COLUMNS
  end
end