Fix error when creating a fresh database

This commit is contained in:
Chocobozzz 2017-11-15 11:25:53 +01:00
parent 6086242524
commit 59c857da59
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 7 additions and 3 deletions

View file

@ -89,7 +89,12 @@ database.init = async (silent: boolean) => {
for (const modelName of Object.keys(database)) {
if ('associate' in database[modelName]) {
database[modelName].associate(database)
try {
database[modelName].associate(database)
} catch (err) {
logger.error('Cannot associate model %s.', modelName, err)
process.exit(0)
}
}
}