I have an organization table like
ID, name, address, phone, email, etc...
Now I want to add some addresses, phones and emails.
Is this a good way to store json data in an email column such as
[ " address2@example2.com ", " address2@example2.com ", " address2@example2.com " ]
Or create another table only for letters, and another for phones, etc.
If it is better to store json data - what is the best way to use it on rails?
Nick sanders
source share