remove reduant code

This commit is contained in:
Sukchan Lee 2017-05-16 22:57:43 +09:00
parent 587e126be8
commit eb24c437e2
1 changed files with 0 additions and 16 deletions

View File

@ -25,22 +25,6 @@ app.prepare()
});
server.listen(3000, err => {
/*
models.UserRole.count().then(c => {
if (c == 0) {
models.UserRole.create({
role: 'admin',
Users: [{
username: 'admin',
password: '1423'
}]
}, {
include: [models.UserRole.User]
});
}
});
*/
if (err) throw err;
console.log('> Ready on http://localhost:3000');
});