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