17 lines
385 B
Ruby
17 lines
385 B
Ruby
# == 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
|