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