summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230207011414_backfill_design_user_mentions_note_id_for_bigint_conversion.rb
blob: 6e971bad3827b1d739b5a5e6dd6544ac0b3e34e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class BackfillDesignUserMentionsNoteIdForBigintConversion < Gitlab::Database::Migration[2.1]
  TABLE = :design_user_mentions
  COLUMNS = %i[note_id]

  restrict_gitlab_migration gitlab_schema: :gitlab_main

  def up
    backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
  end

  def down
    revert_backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
  end
end