0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
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)
};