2018-02-09 19:07:10 +02:00
|
|
|
# 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
|
|
|
|
|
#
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2016-06-28 18:16:06 +03:00
|
|
|
factory :survey_reply do
|
|
|
|
|
user
|
|
|
|
|
survey_question
|
|
|
|
|
end
|
|
|
|
|
end
|