You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
373 B

  1. // const bcrypt = require('bcrypt');
  2. exports.seed = async function seed(knex) {
  3. // const hashedPass = await bcrypt.hash('secret', 5);
  4. // await knex('users').insert({
  5. // name: 'admin admin',
  6. // email: 'admin@argon.com',
  7. // password: hashedPass,
  8. // created_at: new Date(),
  9. // updated_at: new Date(),
  10. // email_verified_at: new Date(),
  11. // });
  12. };