summaryrefslogtreecommitdiffstats
path: root/database/factories/ServiceFactory.ts
blob: 696a04917a4f4e2edefd4c708f16072689ec2b41 (plain) (blame)
1
2
3
4
5
6
7
8
import Service from '#app/Models/Service'
import Factory from '@adonisjs/lucid/factories'

export default Factory.define(Service, ({ faker }) => ({
  name: faker.company.name(),
  recipeId: faker.string.alphanumeric(9),
  serviceId: faker.string.alphanumeric(10),
})).build()