Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / contact / contact.model.js
1 'use strict';
2
3 module.export = function(sequelize, DataTypes) {
4
5   var Contact = sequelize.define('Contact', {
6     name: String,
7     info: String,
8     active: Boolean
9   });
10
11   return Contact;
12
13 };