Built motion from commit 1038d87.|0.0.141
[motion.git] / server / models / tools_condition.js
1 /**
2  * Tools Conditions Model
3  */
4
5 module.exports = function(sequelize, DataTypes) {
6
7   var ToolsCondition = sequelize.define('ToolsCondition', {
8     field: DataTypes.STRING,
9     operator: DataTypes.STRING,
10     value: DataTypes.STRING
11   }, {
12     tableName: 'tools_conditions'
13   });
14
15   return ToolsCondition;
16 };