Built motion from commit 2239aeb.|0.0.113
[motion.git] / server / models / fax_attachment.js
1 /**
2  * Chat Website Model
3  */
4
5 var crypto = require('crypto');
6
7 module.exports = function(sequelize, DataTypes) {
8
9         var FaxAttachment = sequelize.define('FaxAttachment', {
10                 path: DataTypes.STRING,
11                 name: DataTypes.STRING,
12                 basename: DataTypes.STRING,
13                 type: DataTypes.STRING
14         }, {
15                 tableName: 'fax_attachments'
16         });
17
18         return FaxAttachment;
19 };