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

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

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

  def up
    # no-op, moved to 20230322151605_rerun_remove_invalid_deploy_access_level.rb
  end

  def down
    # no-op
  end
end