This is for a Ruby on Rails 3.0.x project.
I have a "lookup" table with data from a vendor.
When I import data from another source, I want to check this table (join on a SKU) for extra data.
It doesn't seem right to me to create a model for this table in my app. The data will never be changed by my app, and it doesn't need to have any model associations beyond the data lookup I just mentioned. It's just occasionally accessed to check for some info.
What is the best practice to access this table?
Thanks.