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

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

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