Say I did rails g scaffold Review artist:string song:string genre:string
and created a review object with those fields...would it later be possible to easily add another field like rating:int
via a rails command, or would I need to manually edit all the files to include another data field for the form? I know it's possible to just delete the first scaffold and rebuild with the extra field, but I was just wondering if there was an easier way.
Thanks