osem-fcy/spec/factories/survey_submissions.rb

19 lines
359 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: survey_submissions
#
# id :bigint not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# survey_id :integer
# user_id :integer
#
FactoryBot.define do
factory :survey_submission do
user
survey
end
end