Added migrations and saving real estate type correctly

This commit is contained in:
Senad Uka
2019-04-20 05:26:14 +02:00
parent c534c1ee34
commit 298c901759
13 changed files with 157 additions and 54 deletions

View File

@@ -5,10 +5,10 @@ const postVrstaNekretnine = require('./app/controllers/vrsta_nekretnine').postVr
let express = require("express");
const path = require("path");
const bodyParser = require("body-parser");
const MarketAlert = require("./app/models/MarketAlert");
const MarketAlert = require("./app/models/marketalert");
const sendNotification = require("./app/lib/sendnotification");
const scrapTheItems = require("./app/lib/scraptheitems");
const sequelize = require("./app/db/db");
const sequelize = require("./app/models/index").sequelize;
const Twocheckout = require("2checkout-node");
const layout = require('express-layout');