不要怂,就是干,撸起袖子干!

Commit e049d121 by Mick Hansen

fix: use dropAllSchemas rather than dropping specific schema when creating schema in test

1 parent 9e17971f
Showing with 1 additions and 1 deletions
...@@ -1232,7 +1232,7 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () { ...@@ -1232,7 +1232,7 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () {
}); });
return this.sequelize.dropSchema('space1').bind(this).then(function () { return self.sequelize.dropAllSchemas().bind(this).then(function () {
return this.sequelize.createSchema('space1'); return this.sequelize.createSchema('space1');
}).then(function () { }).then(function () {
return Dummy.sync({force: true}); return Dummy.sync({force: true});
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!