Bansari Akhani
modified migrations to set field names with underscore snackcase only, apis to syn portfolio, buildings and units data, removed index.js from model, added index.ts file in src/model task - #7658,#7659, #7660
1f6a8f9
raw
history blame
239 Bytes
import { Options, Sequelize } from "sequelize";
import { config } from "../db/config/db.config";
export const sequelize = new Sequelize(
config.database as string,
config.username as string,
config.password,
config as Options
);