forked from sagi/seepur
22 lines
546 B
JavaScript
22 lines
546 B
JavaScript
|
'use strict'
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Factory
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| Factories are used to define blueprints for database tables or Lucid
|
||
|
| models. Later you can use these blueprints to seed your database
|
||
|
| with dummy data.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
/** @type {import('@adonisjs/lucid/src/Factory')} */
|
||
|
// const Factory = use('Factory')
|
||
|
|
||
|
// Factory.blueprint('App/Models/User', (faker) => {
|
||
|
// return {
|
||
|
// username: faker.username()
|
||
|
// }
|
||
|
// })
|