Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210630025020_migrate_push_event_payloads_event_id_back_to_integer_for_gitlab_com.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 834a23a5c7afc1424a38196ee64e39171dc3df58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require Rails.root.join('db', 'post_migrate', '20210622041846_finalize_push_event_payloads_bigint_conversion')

class MigratePushEventPayloadsEventIdBackToIntegerForGitlabCom < ActiveRecord::Migration[6.1]
  disable_ddl_transaction!

  def up
    FinalizePushEventPayloadsBigintConversion.new.down
  end

  def down
    FinalizePushEventPayloadsBigintConversion.new.up
  end
end