Ghost/core/server/models/snippet.js

15 lines
335 B
JavaScript
Raw Normal View History

const ghostBookshelf = require('./base');
const Snippet = ghostBookshelf.Model.extend({
tableName: 'snippets'
});
const Snippets = ghostBookshelf.Collection.extend({
model: Snippet
});
module.exports = {
Snippet: ghostBookshelf.model('Snippet', Snippet),
Snippets: ghostBookshelf.collection('Snippets', Snippets)
};