As specified in this other question you can store serialized data in the database. What i want to know is if i really should or just create a simple extra table.
Object has a list of asociated numbers.
Will probably need to check if an object has a particular number.
Will never update it.
Wont query it.
Have property numbers as serialize?
Have table Numbers belonging to Objects?
BTW im using rails 5.1 and postgresql.
Thanks