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