Simplify location search #27

Merged
bilal.catic merged 16 commits from simplify-location-search into master 2019-09-10 17:15:10 +02:00
Showing only changes of commit d529ef64ae - Show all commits

View File

@@ -0,0 +1,13 @@
"use strict";
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.addColumn("RealEstateRequests", "locationInput", {
type: Sequelize.STRING
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.removeColumn("RealEstateRequests", "locationInput");
}
};