| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/nodejs/models/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/nodejs/models/wo_terms.js |
/* jshint indent: 2 */
module.exports = function(sequelize, DataTypes) {
return sequelize.define('Wo_Terms', {
id: {
autoIncrement: true,
type: DataTypes.INTEGER,
allowNull: false,
primaryKey: true
},
type: {
type: DataTypes.STRING(32),
allowNull: false,
defaultValue: ""
},
text: {
type: "LONGTEXT",
allowNull: true
}
}, {
sequelize,
tableName: 'Wo_Terms'
});
};