2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2021-02-20 09:57:27 -08:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: events_registrations
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# attended :boolean default(FALSE), not null
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# event_id :integer
|
|
|
|
|
# registration_id :integer
|
|
|
|
|
#
|
2016-04-22 18:18:46 +03:00
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2016-04-22 18:18:46 +03:00
|
|
|
factory :events_registration do
|
|
|
|
|
event
|
|
|
|
|
registration
|
|
|
|
|
end
|
|
|
|
|
end
|