650b530a5cbf9c5be92fe527f63814da70154808
[motion.git] / server / models / contact_has_custom_field.js
1 /**
2  * contact has customfield Model
3  */
4
5 var crypto = require('crypto');
6
7 module.exports = function(sequelize, DataTypes) {
8
9         var ContactHasCustomField = sequelize.define('ContactHasCustomField', {
10                 value: DataTypes.STRING
11         }, {
12                 tableName: 'contact_has_custom_fields'
13         });
14
15         return ContactHasCustomField;
16 };