Built motion from commit c56b56e.|0.0.125
[motion.git] / server / migrations / 20160407163943-trunks.js
index b929d55..c88d751 100644 (file)
@@ -1 +1,37 @@
-var _0x9f77=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x65\x78\x70\x6F\x72\x74\x73","\x74\x6F\x6F\x6C\x73\x5F\x74\x72\x75\x6E\x6B\x73","\x63\x6F\x6E\x74\x65\x78\x74","\x53\x54\x52\x49\x4E\x47","\x66\x72\x6F\x6D\x2D\x76\x6F\x69\x70\x2D\x70\x72\x6F\x76\x69\x64\x65\x72","\x63\x68\x61\x6E\x67\x65\x43\x6F\x6C\x75\x6D\x6E","\x66\x72\x6F\x6D\x2D\x73\x69\x70"];_0x9f77[0];module[_0x9f77[1]]= {up:function(_0x8747x1,_0x8747x2){_0x8747x1[_0x9f77[6]](_0x9f77[2],_0x9f77[3],{type:_0x8747x2[_0x9f77[4]],defaultValue:_0x9f77[5]})},down:function(_0x8747x1,_0x8747x2){_0x8747x1[_0x9f77[6]](_0x9f77[2],_0x9f77[3],{type:_0x8747x2[_0x9f77[4]],defaultValue:_0x9f77[7]})}}
\ No newline at end of file
+'use strict';
+
+module.exports = {
+  up: function(queryInterface, Sequelize) {
+    /*
+      Add altering commands here.
+      Return a promise to correctly handle asynchronicity.
+
+      Example:
+      return queryInterface.createTable('users', { id: Sequelize.INTEGER });
+    */
+    queryInterface.changeColumn(
+      'tools_trunks',
+      'context', {
+        type: Sequelize.STRING,
+        defaultValue: 'from-voip-provider'
+      }
+    );
+  },
+
+  down: function(queryInterface, Sequelize) {
+    /*
+      Add reverting commands here.
+      Return a promise to correctly handle asynchronicity.
+
+      Example:
+      return queryInterface.dropTable('users');
+    */
+    queryInterface.changeColumn(
+      'tools_trunks',
+      'context', {
+        type: Sequelize.STRING,
+        defaultValue: 'from-sip'
+      }
+    );
+  }
+};