User과 Post의 관계로 생각하는 것이 가장 심플 User : Post = 1 : n @relation(fields:[relation을 정의할 테이블의 Key (Foreign Key)], references:[참조할 다른 테이블의 Primary Key]) Post : Comments = n : n 각자 스키마 모델에 Thing[] 이라고 추가하기 model User{ id Int @id @default(autoincrement()) posts Post[] } model Post{ id Int @id @default(autoincrement()) author User @relation(fields:[authorId], references:[id]) authorId Int comments Comment[..