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