I am trying to get the difference in hours for two different Time instances. I get these values from the DB as a :datetime column
How can I do this so that it inclu
((date_2 - date_1) / 3600).round
or
((date_2 - date_1) / 1.hour).round