31 Jan 2023
Creates a new page with model, view, and controller, including CRUD operations.
CRUD
rails g scaffold Person name:string quote:text rails db:migrate
Does not create a model or CRUD operations.
rails g controller Person index