When should I use Active Record's database and when should I use a JSON/YAML/XML (whatever) to store data that won't be changing like list of countries and states or (in my case) spells list.
Something like:
[
{
"name": ...
"require level": ...
"school": ...
},
{
"name": ...
"require level": ...
"school": ...
}
]
Thank you.