Built motion from commit 450cc5d.|0.0.139
[motion.git] / server / models / license.js
index f2781f7..9648d76 100644 (file)
@@ -3,11 +3,12 @@
 module.exports = function(sequelize, DataTypes) {
 
   var License = sequelize.define('License', {
+    data1: DataTypes.STRING,
+    data2: DataTypes.STRING,
     license: DataTypes.TEXT
   }, {
     tableName: 'license'
   });
 
   return License;
-
 };