git://repos.xcallymotion.com
/
motion.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Built motion from commit 2e74e5e.|0.0.138
[motion.git]
/
server
/
models
/
license.js
1
'use strict';
2
3
module.exports = function(sequelize, DataTypes) {
4
5
var License = sequelize.define('License', {
6
token: DataTypes.STRING,
7
license: DataTypes.TEXT
8
}, {
9
tableName: 'license'
10
});
11
12
return License;
13
};