fix: db:sync not working (#348)

This commit is contained in:
chenos 2022-04-30 17:28:30 +08:00 committed by GitHub
parent eb49849803
commit 8ee25e1109
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,8 +73,17 @@ export class Database extends EventEmitter implements AsyncEmitter {
if (options instanceof Sequelize) {
this.sequelize = options;
} else {
this.sequelize = new Sequelize(options);
this.options = options;
const opts = {
sync: {
alter: {
drop: false,
},
force: false,
},
...options,
};
this.sequelize = new Sequelize(opts);
this.options = opts;
}
this.collections = new Map();