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