8365d513336701daab6fadaf75ddaa12fa20de80
[motion.git] / server / models / cm_custom_field.js
1 /**
2  * customfield Model
3  */
4
5 module.exports = function(sequelize, DataTypes) {
6
7   var CustomField = sequelize.define('CustomField', {
8     name: DataTypes.STRING,
9     alias: DataTypes.STRING,
10     type: DataTypes.STRING,
11     values: DataTypes.STRING
12   }, {
13     tableName: 'cm_custom_fields',
14     associate: function(models) {}
15   });
16
17   return CustomField;
18 };