Geocoding restricttions, added values for range finders, added confirmation email, and .env file

This commit is contained in:
Nedim Uka
2019-06-03 10:34:59 +02:00
parent d6e999fcf1
commit 8f9e3ae46a
14 changed files with 318 additions and 125 deletions

View File

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