Built motion from commit 503e72f.|0.0.143
[motion.git] / server / migrations / 20160915152818-voice_extensions.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.changeColumn('voice_extensions', 'appdata', {
6       type: Sequelize.STRING(4096),
7       allowNull: true,
8       defaultValue: ''
9     });
10   },
11
12   down: function(queryInterface, Sequelize) {
13     queryInterface.changeColumn('voice_extensions', 'appdata', {
14       type: Sequelize.STRING,
15       allowNull: true,
16       defaultValue: ''
17     });
18   }
19 };