Built motion from commit 1333b3551.|1.0.38
[motion.git] / server / models / license.js
1 'use strict';
2
3 module.exports = function(sequelize, DataTypes) {
4
5   var License = sequelize.define('License', {
6     data1: DataTypes.STRING,
7     data2: DataTypes.STRING,
8     license: DataTypes.TEXT
9   }, {
10     tableName: 'license'
11   });
12
13   return License;
14 };