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

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

class DropMemberTasksTable < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    # no-op to resolve https://gitlab.com/gitlab-com/gl-infra/production/-/issues/16991
  end

  def down
    # no-op to resolve https://gitlab.com/gitlab-com/gl-infra/production/-/issues/16991
  end
end