21 lines
438 B
Ruby
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
|