aboutsummaryrefslogtreecommitdiffstats
path: root/database/factories/ServiceFactory.ts
blob: 6e91c75c19c3830537f8ab9a5bf7b976bf43ccdb (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();