0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/server/models/member-stripe-info.js
Fabien O'Carroll e54adfd30d Added MemberStripeInfo model
no-issue

Simple model to allow us to do relations with the Member model
2019-09-25 10:05:30 +07:00

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)
};