Let's assume this model:
Movie - Title: String - Has many: - Alternative Title: String
My questions is, how should I store the alt. title attribute? I am deciding between three approaches:
- Separate AR model: probably an overkill
- CSV in a signle DB column
- Serialized array in single DB column
The latter two seems logically equivilent. I am leaning towards the CSV approach. Can anyone give some advise on this? What would be the implications on speed and searchability?