Built motion from commit 95b01fa.|0.0.70
[motion.git] / server / models / history / report_square_detail_history.js
1 /**
2  * Context Model
3  */
4
5 module.exports = function(sequelize, DataTypes) {
6
7   var ReportSquareDetailHistory = sequelize.define('ReportSquareDetailHistory', {
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_history'
22   });
23
24   return ReportSquareDetailHistory;
25 };