Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / contact / contact.model.js
index 9af998a..e3414e8 100644 (file)
@@ -1 +1,13 @@
-var _0xbf78=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x65\x78\x70\x6F\x72\x74","\x43\x6F\x6E\x74\x61\x63\x74","\x64\x65\x66\x69\x6E\x65"];_0xbf78[0];module[_0xbf78[1]]=function(_0x95c2x1,_0x95c2x2){var _0x95c2x3=_0x95c2x1[_0xbf78[3]](_0xbf78[2],{name:String,info:String,active:Boolean});return _0x95c2x3;};
\ No newline at end of file
+'use strict';
+
+module.export = function(sequelize, DataTypes) {
+
+  var Contact = sequelize.define('Contact', {
+    name: String,
+    info: String,
+    active: Boolean
+  });
+
+  return Contact;
+
+};