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