water-orm
Version:
A monolith version of Standalone waterline ORM
31 lines (24 loc) • 560 B
JavaScript
/**
* Dependencies
*/
var path = require('path');
var Waterline = require(path.join(process.cwd(),'lib/waterline.js'));
module.exports = Waterline.Collection.extend({
tableName: 'customerTable',
identity: 'customer',
connection: 'associations',
attributes: {
name: 'string',
title: 'string',
capital : 'integer',
payments: {
collection: 'Payment',
via: 'a_customer'
},
toJSON: function() {
var obj = this.toObject();
delete obj.name;
return obj;
}
}
});