빈 객체를 반환해야 함 index.js와 몇 가지 모델 (클래스) index.js가있는 폴더가 있습니다. module.exports = { Book : require('./book'), Author : require('./author') } book.js var Author = require('./author') var Book = models.ActiveRecord.extend({ schema : { belongsTo : { author : Author } } }) module.exports = Book author.js var Book = require('./book') var Author = models.ActiveRecord.extend({ schema : { hasMany : { author :..