rittenhop-ghost/versions/5.94.2/core/server/models/collection-post.js

10 lines
233 B
JavaScript
Raw Normal View History

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