mirror of
https://github.com/Ratstail91/sineql-demo.git
synced 2026-05-06 07:40:09 +10:00
12 lines
175 B
JavaScript
12 lines
175 B
JavaScript
const Book = require('./book');
|
|
const Author = require('./author');
|
|
|
|
//relations
|
|
Author.hasMany(Book);
|
|
Book.belongsTo(Author);
|
|
|
|
//collate
|
|
module.exports = {
|
|
Book,
|
|
Author,
|
|
}; |