say I want to scaffold generate university
but university should eventually be related to state. as in each university has one state and one state has many universities.
in my scaffold command should I include state_id??
script/generate scaffold university name:string address:string state_id:int
... I know I will have to update my models to have them understand this one to many relationship but I dont think its the best way to just add the column in the database manually.... so my question is...what would be the most appropriate approach? am I doing it correctly? please help.