Built motion from commit 0dbf6b8.|0.0.131
[motion.git] / server / migrations / 20160729174550-fax_room.js
1 'use strict';
2
3 module.exports = {
4   up: function(queryInterface, Sequelize) {
5     queryInterface.renameColumn('fax_rooms', 'from', 'contact');
6   },
7
8   down: function(queryInterface, Sequelize) {
9     queryInterface.renameColumn('fax_rooms', 'contact', 'from');
10   }
11 };