summaryrefslogtreecommitdiff
path: root/spec/factories/gitlab/database/postgres_index_bloat_estimate.rb
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