15 lines
323 B
Ruby
Executable File
15 lines
323 B
Ruby
Executable File
# == Schema Information
|
|
#
|
|
# Table name: platform_apps
|
|
#
|
|
# id :bigint not null, primary key
|
|
# name :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
FactoryBot.define do
|
|
factory :platform_app do
|
|
name { Faker::Book.name }
|
|
end
|
|
end
|