2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2021-02-20 09:57:27 -08:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: sponsorship_levels
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# position :integer
|
|
|
|
|
# title :string
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# conference_id :integer
|
|
|
|
|
#
|
2014-06-05 11:56:04 +05:30
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2014-06-05 11:56:04 +05:30
|
|
|
factory :sponsorship_level do
|
2016-05-02 17:39:06 +02:00
|
|
|
title { Faker::Lorem.word }
|
2016-05-02 15:30:22 +02:00
|
|
|
|
2014-06-05 11:56:04 +05:30
|
|
|
conference
|
|
|
|
|
end
|
|
|
|
|
end
|