mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03: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)
|
||
|
};
|