refactor: Remove User model from Prisma schema to streamline database structure and improve maintainability
This commit is contained in:
parent
0d96d49281
commit
ac59d626ab
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user