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

20221006141145_add_targets_to_elastic_reindexing_tasks.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1631f8ae57ec5b63c55b1750edaeead7005e15cb (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddTargetsToElasticReindexingTasks < Gitlab::Database::Migration[2.0]
  def change
    add_column :elastic_reindexing_tasks, :targets, :text, array: true
  end
end