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