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

20200630110826_add_documents_count_target_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: dcb4ccc857d49d5204234f98d4de645bca9a0664 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddDocumentsCountTargetToElasticReindexingTasks < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :elastic_reindexing_tasks, :documents_count_target, :integer
  end
end