e3414e8e4a568d79e36ee0ef8878887f930a0baf
[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 };