aboutsummaryrefslogtreecommitdiffstats
path: root/database/factory.js
diff options
context:
space:
mode:
Diffstat (limited to 'database/factory.js')
-rw-r--r--database/factory.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/database/factory.js b/database/factory.js
deleted file mode 100644
index 550c5e6..0000000
--- a/database/factory.js
+++ /dev/null
@@ -1,20 +0,0 @@
1
2/*
3|--------------------------------------------------------------------------
4| Factory
5|--------------------------------------------------------------------------
6|
7| Factories are used to define blueprints for database tables or Lucid
8| models. Later you can use these blueprints to seed your database
9| with dummy data.
10|
11*/
12
13/** @type {import('@adonisjs/lucid/src/Factory')} */
14// const Factory = use('Factory')
15
16// Factory.blueprint('App/Models/User', (faker) => {
17// return {
18// username: faker.username()
19// }
20// })