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

20231130192752_add_options_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: 3a94e6d600be6e585eef05354b3f6855f61ad9fc (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddOptionsToElasticReindexingTasks < Gitlab::Database::Migration[2.2]
  milestone '16.7'

  def change
    add_column :elastic_reindexing_tasks, :options, :jsonb, null: false, default: {}
  end
end