Worlds Bets
This commit is contained in:
16
spec/factories/world_countries.rb
Normal file
16
spec/factories/world_countries.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: world_countries
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# code :string not null
|
||||
# name :string not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
FactoryBot.define do
|
||||
factory :world_country do
|
||||
name { "MyString" }
|
||||
code { "MyString" }
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user