summaryrefslogtreecommitdiff
path: root/spec/factories/gitlab/database/async_indexes/postgres_async_index.rb
blob: e3f366c17eb1b22ba25a14f973212df42518d9ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

FactoryBot.define do
  factory :postgres_async_index, class: 'Gitlab::Database::AsyncIndexes::PostgresAsyncIndex' do
    sequence(:name) { |n| "users_id_#{n}" }
    definition { "CREATE INDEX #{name} ON #{table_name} (id)" }
    table_name { "users" }

    trait :with_drop do
      definition { "DROP INDEX #{name}" }
    end
  end
end