Built motion from commit 0c27b27.|1.0.11
[motion.git] / server / migrations / 20170217111325-report_call.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.sequelize.query('ALTER TABLE report_call CHANGE type type ENUM(\'inbound\', \'internal\', \'outbound\', \'inbound-fax\', \'outbound-fax\', \'tigerdial\', \'chanspy\');');
6   },
7
8   down: function(queryInterface, Sequelize) {
9     queryInterface.sequelize.query('ALTER TABLE report_call CHANGE type type ENUM(\'inbound\', \'internal\', \'outbound\', \'inbound-fax\', \'outbound-fax\', \'tigerdial\');');
10   }
11 };