aboutsummaryrefslogtreecommitdiffstats
path: root/database/factories/ServiceFactory.ts
blob: f675063b719cbdb448cfecb6a1838d92aef50629 (plain) (blame)
1
2
3
4
5
6
7
8
import Service from 'App/Models/Service';
import Factory from '@ioc:Adonis/Lucid/Factory';

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