From b241dc76f8ed86b0ff4b57b6ce85514f6075c09f Mon Sep 17 00:00:00 2001
From: elit04 <elit04@fu-berlin.de>
Date: Thu, 13 Jan 2022 04:37:39 -0500
Subject: [PATCH] init Customer deleted

---
 server/src/db/index.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/server/src/db/index.ts b/server/src/db/index.ts
index 6baaf94..1ff6b48 100644
--- a/server/src/db/index.ts
+++ b/server/src/db/index.ts
@@ -4,7 +4,6 @@ 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 { initEmployee } from "./models/Employee";
 
 const initializeDatabase = async () => {
@@ -41,7 +40,6 @@ const initializeDatabase = async () => {
   await initBoat(sequelize);
   await initBoatType(sequelize);
   await initCheckIn(sequelize);
-  await initCustomer(sequelize);
   await initEmployee(sequelize);
 
   await sequelize.sync();
-- 
GitLab