I don't have an object yet
all
Model.all => fetch all the items from the databasecreate
Model.create(:hour => 1, :emotion => "super stoked")
=> create a new model in the databasenew
Model.new => build a new model but don't save itfirst
Model.first => fetches the first one