mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
e54adfd30d
no-issue Simple model to allow us to do relations with the Member model
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
const ghostBookshelf = require('./base');
|
|
|
|
const MemberStripeInfo = ghostBookshelf.Model.extend({
|
|
tableName: 'members_stripe_info'
|
|
});
|
|
|
|
module.exports = {
|
|
MemberStripeInfo: ghostBookshelf.model('MemberStripeInfo', MemberStripeInfo)
|
|
};
|