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

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

class FinalizeUserTypeMigration < Gitlab::Database::Migration[2.1]
  MIGRATION = 'MigrateHumanUserType'

  disable_ddl_transaction!

  def up
    finalize_background_migration(MIGRATION)
  end

  def down
    # no-op
  end
end