mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
10 lines
263 B
JavaScript
10 lines
263 B
JavaScript
|
const ghostBookshelf = require('./base');
|
||
|
|
||
|
const MemberAnalyticEvent = ghostBookshelf.Model.extend({
|
||
|
tableName: 'temp_member_analytic_events'
|
||
|
});
|
||
|
|
||
|
module.exports = {
|
||
|
MemberAnalyticEvent: ghostBookshelf.model('MemberAnalyticEvent', MemberAnalyticEvent)
|
||
|
};
|