Built motion from commit b18b7a808.|1.0.23
[motion.git] / server / migrations / 20170614131609-user.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('users', 'phoneBarRingInUse', {
6       type: Sequelize.BOOLEAN,
7       defaultValue: false
8     });
9   },
10
11   down: function(queryInterface, Sequelize) {
12     queryInterface.removeColumn('users', 'phoneBarRingInUse');
13   }
14 };