Example schema is like below
modal Person{
id Int @id @default(autoincrement())
parent_id Int
person_type PersonType @default(contact)
fullname String @db.VarChar(255)
}
modal PersonAssociation{
person_id Int
association_id Int
association_type AssociationType @default(owner)
}
type PersonType { user, staff, contact, client, company, team, project }
type AssociationType { owner, member, manager, viewer, reviewer, share }