Guest User

Untitled

a guest
Dec 19th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. id: {
  2. primaryKey: true,
  3. type: Sequelize.UUID,
  4. defaultValue: uuidv1() // this is a function from the uuid NPM library
  5. },
  6.  
  7. return queryInterface.bulkInsert('Users', [{
  8. name: 'Administrador',
  9. username: 'admin',
  10. password: 'secret'
  11. }], {});
Add Comment
Please, Sign In to add comment