UNPKG

magic-models

Version:

A simple, free software magical ORM.

30 lines (29 loc) 369 B
module.exports = function(db) { db.define('Message', { id: { type: 'int', key: 'primary' }, to: { type: 'int' }, from: { type: 'int' }, title: { type: 'varchar', length: 255, validate: { len: [8, 255] } }, content: { type: 'text', validate: { minLen: 50 } } }, { modifiedAt: null }); };