UNPKG

bookshelf-paranoia

Version:
16 lines (11 loc) 245 B
'use strict' let db = require('../') module.exports = db.bookshelf.model('ArticleTag', { tableName: 'articles_tags', tag: function () { return this.hasOne('Tag') }, article: function () { return this.hasOne('Article') } })