Make place selection possible

This commit is contained in:
Senad Uka
2019-04-30 06:48:41 +02:00
parent a2f6f033bf
commit 864b917b4f
7 changed files with 36 additions and 80 deletions

View File

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