Trying to fix hash

This commit is contained in:
2021-06-18 19:26:21 +02:00
parent 086f8251ed
commit 07e7ff15a1
5 changed files with 1 additions and 36 deletions

View File

@@ -1,12 +0,0 @@
import BaseSeeder from '@ioc:Adonis/Lucid/Seeder'
import User from "App/Models/User";
export default class UserSeeder extends BaseSeeder {
public async run () {
// Write your database queries inside the run method
await User.create({
email: 'admin@linkyjs.dev',
password: 'password'
})
}
}