magic-models
Version:
A simple, free software magical ORM.
27 lines (26 loc) • 350 B
JavaScript
module.exports = function(db) {
db.define('News', {
id: {
type: 'int',
key: 'primary'
},
userId: {
type: 'int'
},
title: {
type: 'varchar',
length: 255,
},
content: {
type: 'text',
validate: {
minLen: {
val: 50,
msg: 'Content too short'
}
}
}
}, {
tableName: 'News'
});
};