Skip to content
Snippets Groups Projects
Commit 9a63f505 authored by alrwasheda's avatar alrwasheda :speech_balloon:
Browse files

initBoatType function call

parent a720bcc3
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ import { Client } from "pg";
import { Dialect, Sequelize } from "sequelize";
import envVars from "../config";
import { initBoat } from "./models/Boat";
import { initBoatType } from "./models/BoatType";
import { initCheckIn } from "./models/CheckIn";
import { initCustomer } from "./models/Customer";
import { initWorker } from "./models/Worker";
......@@ -38,6 +39,7 @@ const initializeDatabase = async () => {
);
await initBoat(sequelize);
await initBoatType(sequelize);
await initCheckIn(sequelize);
await initCustomer(sequelize);
await initWorker(sequelize);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment