(max)
| 11 | const NO_PROJECTS = 10; |
| 12 | |
| 13 | function randomInt(max) { |
| 14 | const min = 1; |
| 15 | return Math.floor(Math.random() * (max - min + 1)) + min; |
| 16 | } |
| 17 | |
| 18 | return sequelize.sync({ force: true, logging: console.log }).then(function () { |
| 19 | let users = []; |