Built motion from commit 62eaa14.|1.0.10
[motion.git] / server / migrations / 20170207170613-report_call.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('report_call', 'contactId', {
6       type: Sequelize.INTEGER
7     });
8   },
9
10   down: function(queryInterface, Sequelize) {
11     queryInterface.removeColumn('report_call', 'contactId');
12   }
13 };