Built motion from commit 1333b3551.|1.0.38
[motion.git] / server / migrations / 20160615154357-square_details.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('report_square_details', 'callerid', Sequelize.STRING);
6   },
7
8   down: function(queryInterface, Sequelize) {
9     queryInterface.removeColumn('report_square_details', 'callerid');
10   }
11 };