So I have 3 fields in my HTML, lunchMonth, lunchDay and lunchYear
lunchMonth and lunchDay are Select tags with option tags for months and days remaining in the year. lunchYear is set to 2011.
I've set up a form but I need to generate a scaffold to take these 3 values.
What's the proper way to do this?
Rails generate scaffold Date month:string date:integer year:integer
Is that right?