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

20201211145950_add_bloat_estimate_to_reindex_action.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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