Using the rails script, I have generated a five column table (ID, title, content, created_at, updated_at) and its relevant views and controllers using the following command:
rails generate scaffold Input title:string content:text
It also created a few new routes for the creation, the reading, the updating and the deletion of database entries:
inputs GET /inputs(.:format) inputs#index
POST /inputs(.:format) inputs#create
new_input GET /inputs/new(.:format) inputs#new
edit_input GET /inputs/:id/edit(.:format) inputs#edit
input GET /inputs/:id(.:format) inputs#show
PUT /inputs/:id(.:format) inputs#update
DELETE /inputs/:id(.:format) inputs#destroy
But where are these routes stored? They're not in rails' 'routes.rb' file!