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

postgres_index_bloat_estimate.rb « database « gitlab « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 878650714b87f484a921afe842ef2c2be51886db (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :postgres_index_bloat_estimate, class: 'Gitlab::Database::PostgresIndexBloatEstimate' do
    association :index, factory: :postgres_index

    identifier { index.identifier }
    bloat_size_bytes { 10.megabytes }
  end
end