4 up: function(queryInterface, Sequelize) {
5 queryInterface.addColumn('tools_trunks', 'active', {
6 type: Sequelize.BOOLEAN,
9 queryInterface.addColumn('tools_trunks', 'status', Sequelize.STRING);
12 down: function(queryInterface, Sequelize) {
13 queryInterface.removeColumn('tools_trunks', 'active');
14 queryInterface.removeColumn('tools_trunks', 'status');