Built motion from commit 1333b3551.|1.0.38
[motion.git] / server / migrations / 20160428124018-voice_extensions.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('voice_extensions', 'cutdigits', {
6       type: Sequelize.INTEGER,
7       defaultValue: 0
8     });
9   },
10
11   down: function(queryInterface, Sequelize) {
12     queryInterface.removeColumn('voice_extensions', 'cutdigits');
13   }
14 };