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

8 lines
230 B
Ruby

# 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