I already have set up Devise to My App.
So User model is already generated, and exists by installing Devise
Now I’d like to add my own controller users_controller.rb and its views index and show.
How can I make scaffold without affecting to User model that already exists?
For scaffold with only ‘name’ column:
Just add some columns.
Look to
rails g scaffold -houtput for additional information.