我已经按照本指南http://compoundjs.com/docs创建了一个非常基本的 REST 服务器。它在使用内存作为存储时起作用。在那之后,我试图转移到mysql。
执行“compound db migrate”(或更新)时,响应为:
Perform migrate on
- mysql
1
但是没有创建数据库和表。然后,在启动服务器或控制台时,会创建数据库。但桌子不是。并且迁移/更新操作似乎不起作用。
这是我的 schema.coffee 文件
Pin = define 'Pin', ->
property 'name', String
Book = define 'Book', ->
property 'link', String
property 'pin_id', Number
Pin.hasMany(Book, {as: 'books', foreignKey: 'pin_id'})
Book.belongsTo(Pin, {as: 'pin', foreignKey: 'pin_id'})
这些是我的 package.json 依赖项
{ "ejs": "*"
, "ejs-ext": "latest"
, "express": "~3.x"
, "compound": ">= 1.1.0"
, "jugglingdb": ">= 0.1.0"
, "coffee-script": ">= 1.1.1"
, "stylus": "latest"
, "seedjs": "latest"
, "co-assets-compiler": "*"
}
任何帮助将不胜感激:)