Built motion from commit c56b56e.|0.0.125
[motion.git] / server / migrations / 20160517180411-fax_rooms.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.addColumn('fax_rooms', 'tags', Sequelize.TEXT);
6   },
7
8   down: function(queryInterface, Sequelize) {
9     queryInterface.removeColumn('fax_rooms', 'tags');
10   }
11 };