debian-mirror-gitlab/db/migrate/20210414045322_add_pause_seconds_to_batched_background_migration_jobs.rb
2021-06-08 01:23:25 +05:30

8 lines
237 B
Ruby

# 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