I'm using the scaffold_controller generator on an existing model with existing attributes, but the view forms that get generated don't have any input controls for the corresponding model attributes - they're just empty forms. Why is that?
e.g:
rails generate scaffold_controller User --skip --no-test-framework
Where the User already has name
and email
attributes should generate forms with name and email fields...