What's this error
it was working till yesterday then i added stateDistrict to address model then i started to get this error. Which enumTypes are undefined?


enum Role {
BASIC
ADMIN
EDITOR
}
enum SubscribePlanEnum {
BASIC
PIECE
GRADING
ALERT
}
model User {
id String @id @default(uuid())
name String?
gstNumber String
phoneNumber String @unique
role Role @default(BASIC)
address Address?
subscribedPlans SubscribePlan[]
createAt DateTime @default(now())
}
model SubscribePlan {
id String @id @default(uuid())
enabledPlan SubscribePlanEnum @default(BASIC)
User User @relation(fields: [userId], references: [id])
userId String
@@unique([id, userId])
@@index([id])
}
model Address {
addressId String @id @default(uuid())
latitude Float
longitude Float
stateDistrict String
user User @relation(fields: [userId], references: [id])
userId String @unique
@@unique([latitude, longitude])
@@index([userId])
}