rails g model tweet
--Edit migration → rails db: execute migrate → rails s
--Start console-> Add data-> Check with Sequel
--Routing
--What is the resources method? A method that automatically generates routes to seven actions.
--Only option creates a route for the specified action only
--Route editing
--tweets controller creation → rails controller tweets
--Define index action in controller
-@tweets = Tweet.all assigns all records to instance variables and goes to view
--Create a view with the each method that you forget soon