Files
puzzle-scoreboard/spec/factories/world_bets.rb
sto dae86bd1ea
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
Worlds Bets
2026-09-06 10:07:47 +02:00

21 lines
438 B
Ruby

# == Schema Information
#
# Table name: world_bets
#
# id :integer not null, primary key
# bet :string
# french_score :integer
# name :string
# score :integer
# world_score :integer
# created_at :datetime not null
# updated_at :datetime not null
#
FactoryBot.define do
factory :world_bet do
name { "MyString" }
bet { "MyString" }
score { 1 }
end
end