In the official docs, it’s written that ideally structs should have less than 32 fields (source here).
Do you go around that limitation? If yes, how?
It’s very easy for an ecto schema to have more than 32 fields, especially as your application grows in complexity …
Adding belongs_to
already adds 2 fields to the struct (the association
and the association_id
keys).