osem-fcy/spec/factories/survey_replies.rb

20 lines
427 B
Ruby
Raw Normal View History

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