我现在正在使用Sequelize。 我想问一下如何在Sequelize中同时同步多个表。 我目前的代码如下:
Account.sync().then(() => {
console.log('account created');
}).catch((error) => {
console.log('error');
});
Quiz.sync().then(() => {
console.log('quiz created!');
}).catch((error) => {
console.log('error');
});
我尝试过像Quiz.sync()。Account.sync()这样的东西,但它在我的开发环境中没有用。 (webpack plus babel)