water-orm
Version:
A monolith version of Standalone waterline ORM
37 lines (29 loc) • 435 B
JavaScript
/**
* Models / Schema
* (for reference)
*
* @type {Object}
*/
// Message: {
// attributes: {
// subject: 'string',
// body: 'string',
// to: {
// collection: 'user'
// },
// cc: {
// collection: 'user'
// },
// bcc: {
// collection: 'user'
// },
// from: {
// model: 'user'
// }
// }
// };
// User: {
// attributes: {
// email: 'string'
// }
// };