Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / jscripty_project / jscripty_project.js
1 'use strict';
2
3 module.exports = function(sequelize, DataTypes) {
4   return sequelize.define('JscriptyProject', {
5     name: DataTypes.STRING,
6     description: DataTypes.STRING
7   }, {
8     tableName: 'jscripty_projects'
9   });
10 };