summaryrefslogtreecommitdiff
path: root/db/migrate/20221006141145_add_targets_to_elastic_reindexing_tasks.rb
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