osem-fcy/spec/factories/votes.rb

21 lines
338 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: votes
#
# id :bigint not null, primary key
# rating :integer
# created_at :datetime
# updated_at :datetime
# event_id :integer
# user_id :integer
#
FactoryBot.define do
factory :vote do
event
user
rating { 1 }
end
end