UNPKG

bookshelf-paranoia

Version:
17 lines (12 loc) 265 B
'use strict' let db = require('../') module.exports = db.bookshelf.model('Comment', { tableName: 'comments', softDelete: true, user: function () { return this.belongsTo('User') }, article: function () { return this.belongsTo('Article') } })