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

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

class RemoveApplicationSettingsAiAccessTokenColumn < Gitlab::Database::Migration[2.1]
  def up
    # no-op because the column was not ignored correctly,
    # see https://gitlab.com/gitlab-com/gl-infra/reliability/-/issues/24523
  end

  def down
    # no-op because the column was not ignored correctly,
    # see https://gitlab.com/gitlab-com/gl-infra/reliability/-/issues/24523
  end
end