In prisma schema, I want to define a simple model like:
model NaturalPerson {
id String @@id
cpf String?
}
but here is the catch: I want the attribute cpf to match a certain regular expression ^[0-9]{11}$.
Is it possible to define such validation?