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

20210414045322_add_pause_seconds_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: d232f9c0305a06c2cd91da29f6baa826e5bd0b18 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddPauseSecondsToBatchedBackgroundMigrationJobs < ActiveRecord::Migration[6.0]
  def change
    add_column :batched_background_migration_jobs, :pause_ms, :integer, null: false, default: 100
  end
end