Built motion from commit 95b01fa.|0.0.70
[motion.git] / server / models / report_jscripty_input.js
1 'use strict';
2
3 module.exports = function(sequelize, DataTypes) {
4   return sequelize.define('ReportJscriptyInput', {
5     input_id: DataTypes.INTEGER,
6     input_type: DataTypes.STRING,
7     input_label: DataTypes.STRING,
8     input_value: DataTypes.STRING
9   }, {
10     tableName: 'report_jscripty_inputs'
11   });
12 };