我正在使用以下cli命令创建document_types表
allprojects {
repositories {
google()
jcenter()
maven {
url "http://dl.bintray.com/glomadrian/maven"
}
}
}
答案 0 :(得分:1)
解决方案:删除不同属性之间逗号后的空格,以避免错误,正确的命令是
sequelize model:create --name User --attributes name:string, username:string, email:string, password:string