From ac59d626ab919cdbf62985442aa59f57bd75fa06 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Wed, 21 May 2025 14:10:57 +0900 Subject: [PATCH] refactor: Remove User model from Prisma schema to streamline database structure and improve maintainability --- prisma/schema.prisma | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 00e4bc6..46bd335 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -7,18 +7,6 @@ datasource db { url = env("DATABASE_URL") } -model User { - id Int @id @default(autoincrement()) - username String @unique - phone String? - email String? - password String? - kakao_id String? - avatar String? - created_at DateTime @default(now()) - updated_at DateTime @updatedAt -} - model MS_SUITABLE { id Int @id @default(autoincrement()) product_name String @db.VarChar(200)