rittenhop-ghost/versions/5.94.2/core/server/models/recommendation.js

11 lines
253 B
JavaScript

const ghostBookshelf = require('./base');
const Recommendation = ghostBookshelf.Model.extend({
tableName: 'recommendations',
defaults: {}
}, {});
module.exports = {
Recommendation: ghostBookshelf.model('Recommendation', Recommendation)
};