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

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

class RemoveDuplicateServices < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    # noop, replaced by 20210112143418_remove_duplicate_services.rb
  end

  def down
  end
end