Ruby on Rails - can't access datetime model object
- by NomadicRiley
I've created a model that has 3 string columns and a datetime. Everything is running in SQLite3 and I can view the records in my table just fine using Lita.
I'm trying to display the values in a page (index action) using code like this:
<% @details.each do |lifeCycle| %
<%= debug(lifeCycle)%
…