我有这部分代码我想同步它,但不能
this.sequelizeCon = new this.sequelize('mydb', 'root', '', {
host: "127.0.0.1",
port: 3306
})
var revision = this.sequelizeCon.define("revision",{
version :{
type:this.sequelize.INTEGER,
primaryKey:true,
allowNull:false
}
})
revision.sync();
我得到了这个错误响应
[TypeError: Object [object Object] has no method 'apply']
谁能告诉我我的代码有什么问题..?