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

20210311120152_add_metrics_to_batched_background_migration_jobs.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 523010a4aea6567a0ca2bc9abc29566b384dcc81 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :batched_background_migration_jobs, :metrics, :jsonb, null: false, default: {}
  end
end