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

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

class AddNamespaceIdToIssueSearchData < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def up
    add_column :issue_search_data, :namespace_id, :bigint
  end

  def down
    remove_column :issue_search_data, :namespace_id
  end
end