b9a2f4c99db526b3b8187477ded47246c85a2ac7
[motion.git] / server / models / report_square_detail.js
1 /**
2  * Context Model
3  */
4
5 module.exports = function(sequelize, DataTypes) {
6
7   var ReportSquareDetail = sequelize.define('ReportSquareDetail', {
8     uniqueid: {
9       type: DataTypes.STRING,
10     },
11     node: {
12       type: DataTypes.STRING,
13     },
14     application: {
15       type: DataTypes.STRING,
16     },
17     data: {
18       type: DataTypes.STRING,
19     }
20   }, {
21     tableName: 'report_square_details'
22   });
23
24   return ReportSquareDetail;
25 };