15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: (queryInterface, Sequelize) => {
|
|
return queryInterface.addColumn("SearchRequests", "includeWithoutPrice", {
|
|
type: Sequelize.BOOLEAN,
|
|
defaultValue: true
|
|
});
|
|
},
|
|
|
|
down: (queryInterface, Sequelize) => {
|
|
return queryInterface.removeColumn("SearchRequests", "includeWithoutPrice");
|
|
}
|
|
};
|