Built motion from commit d127c62.|0.0.151
[motion.git] / server / migrations / 20161130151222-report_integration.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('report_integration', 'subtypeChannel',
6       Sequelize.STRING
7     );
8   },
9
10   down: function(queryInterface, Sequelize) {
11     queryInterface.removeColumn('report_integration', 'subtypeChannel');
12   }
13 };