Built motion from commit 0dbf6b8.|0.0.131
[motion.git] / server / migrations / 20160801002938-openchannel_accounts.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.removeColumn('openchannel_accounts', 'reply');
6
7   },
8
9   down: function(queryInterface, Sequelize) {
10     queryInterface.addColumn('openchannel_accounts', 'reply', Sequelize.BOOLEAN);
11   }
12 };