Displaying 1 result from an estimated 1 matches for "time_keep".
Did you mean:
time_exp
2010 Oct 13
10
Rails 2.3.8 - What happens to a datetime field between a form being submitted and the controller receiving the params
I currently have a model that simply contains one datetime field:
class CreateElectricityReadings < ActiveRecord::Migration
def self.up
create_table :clocks do |t|
t.datetime :time_keeper
t.timestamps
end
end
def self.down
drop_table :clocks
end
end
If I enter the date string "13/10/2010" into this field its showing up
in the controller as params[:clock][:time_keeper] "2010-10-13 23:00:00
UTC". I''ve tried overloading
ActiveRecord...