Built motion from commit 654a660.|0.0.150
[motion.git] / server / migrations / 20161117112000-int_sugarcrm_accounts.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('int_sugarcrm_accounts', 'serverUrl', Sequelize.STRING);
6   },
7
8   down: function(queryInterface, Sequelize) {
9     queryInterface.removeColumn('int_sugarcrm_accounts', 'serverUrl');
10   }
11 };