Built motion from commit 2e74e5e.|0.0.138
[motion.git] / server / models / license.js
index f2781f7..fe7aa6c 100644 (file)
@@ -3,11 +3,11 @@
 module.exports = function(sequelize, DataTypes) {
 
   var License = sequelize.define('License', {
+    token: DataTypes.STRING,
     license: DataTypes.TEXT
   }, {
     tableName: 'license'
   });
 
   return License;
-
 };