6333030f96b2a6e3cbf1e9ac239cd7c1ca51c03c
[motion.git] / server / api / update / update.js
1 'use strict';
2
3 module.exports = function(sequelize, DataTypes) {
4
5   var Update = sequelize.define('Update', {
6     name: DataTypes.STRING,
7     description: DataTypes.STRING
8   });
9
10   return Update;
11 };