I'm incredibly new to Rails and programming in general. Built my first, fairly static, Rails app. I have 100's of products (specifically t-shirts) that all have associated colors (RGB values) and sizes that I need to display on several product pages.
Rather than hand-coding this information, I assume I need to build a database for it. If I create a Product model and products controller with the correct table headers, how do I get the data into the table?
Most of the documentation that I've been reading has to do with building tables that hold user-generated dynamic content, not large lists like the one I'm trying to create.
Thanks!