```prisma model M14 { id String @id @default(cuid()) // consistency of ? between m12 and m12Id m12 M12? @relation(fields: [m12Id], references: [id]) m12Id String? } ```