I have a Ruby on Rails app with a Customer model that needs a related city/state. Adding a string column for the state could cause my coworkers to miss-type the location and I would have a harder time finding all the customers in a given city. Creating a model for a city that would only include a name seems excessive.
What is the correct way of storing this so that I can find my customers by city later on?
If misstyping is a problem, keep the column as text, but have it as a
select
instead of aninput
tag.You can also validate that column to see it matches the list of states
For the list you can have it in a constant to keep it accessible like
and then access it via User::STATES