I have a simple function within my model to set a completed datetime column in a database. this function worked until I tried to change the default rails format for datetime.
After reading up on the issues with mysql datetime format and rails I decided to take out the formating code I had in the environment.rb
It still does not save though. I want it to save the same way that created_at etc. save. I can then format the display of the date.
I have restarted the web server
Model:
def self.complete(id)
update(id, :completed_at => Time.now)
end
Controller:
Class.complete(params[:id])