String @unique name String? posts Post[] } model Post { id Int @id @default(autoincrement()) title String published Boolean @default(false) authorId Int author User @relation(fields: [authorId], references: [id]) } ほぼPrismaのschema。 でnull許可、 ? @relation でリレーション 29