mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
|
const ghostBookshelf = require('./base');
|
||
|
|
||
|
const Newsletter = ghostBookshelf.Model.extend({
|
||
|
tableName: 'newsletters'
|
||
|
});
|
||
|
|
||
|
module.exports = {
|
||
|
Newsletter: ghostBookshelf.model('Newsletter', Newsletter)
|
||
|
};
|