osem-fcy/spec/factories/subscriptions.rb
2021-02-20 09:57:27 -08:00

19 lines
335 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: subscriptions
#
# id :bigint not null, primary key
# created_at :datetime
# updated_at :datetime
# conference_id :integer
# user_id :integer
#
FactoryBot.define do
factory :subscription do
user
conference
end
end