I have an array of hashes from an api that I want to store in a database. This data is just a list of names that are always going to be the same so I wanted to remove the api call to reduce load times. How can I store this data? Do I have to make a model of it?
The data looks like this:
[{"id":"30","name":"Mike"},
{"id":"57","name":"Dave"},
{"id":"9","name":"Kevin"},
....
{"id":"20","name":"Kyle"}]
Would I be able to open a db viewer/editor tool and just type the data in?