431e29476626b5bc59710939ce8a0b041f58459f
[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     project_name: {
21       type: DataTypes.STRING,
22     },
23     callerid: {
24       type: DataTypes.STRING,
25     }
26   }, {
27     tableName: 'report_square_details'
28   });
29
30   return ReportSquareDetail;
31 };