ba48b5d341adcae99fcadf0423a053887472c327
[motion.git] / server / models / 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     tableName: 'updates'
10   });
11
12   return Update;
13 };