summaryrefslogtreecommitdiff
path: root/db/migrate/20201211145950_add_bloat_estimate_to_reindex_action.rb
blob: 894cee92284e467d43485cc2f63243f47ecec769 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddBloatEstimateToReindexAction < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :postgres_reindex_actions, :bloat_estimate_bytes_start, :bigint
  end
end