model StudyGroup {
id String @id @default(uuid())
nickname String
studyname String
description String
password String
img String?
point Int @default(0)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
Todo Todo[]
Emoticon Emoticon[]
}
이미지에 null값이 있을때 처리 (studyPage에서 사용예)