ghost
Version:
The professional publishing platform
35 lines (27 loc) • 922 B
JavaScript
const errors = require('@tryghost/errors');
const ghostBookshelf = require('./base');
const DonationPaymentEvent = ghostBookshelf.Model.extend({
tableName: 'donation_payment_events',
member() {
return this.belongsTo('Member', 'member_id', 'id');
},
postAttribution() {
return this.belongsTo('Post', 'attribution_id', 'id');
},
userAttribution() {
return this.belongsTo('User', 'attribution_id', 'id');
},
tagAttribution() {
return this.belongsTo('Tag', 'attribution_id', 'id');
}
}, {
async edit() {
throw new errors.IncorrectUsageError({message: 'Cannot edit DonationPaymentEvent'});
},
async destroy() {
throw new errors.IncorrectUsageError({message: 'Cannot destroy DonationPaymentEvent'});
}
});
module.exports = {
DonationPaymentEvent: ghostBookshelf.model('DonationPaymentEvent', DonationPaymentEvent)
};