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