method
create_with_timestamps
v2.1.0 -
Show latest stable
- Class:
ActiveRecord::Timestamp
create_with_timestamps(#:nodoc:)private
No documentation available.
# File activerecord/lib/active_record/timestamp.rb, line 20
def create_with_timestamps #:nodoc:
if record_timestamps
t = self.class.default_timezone == :utc ? Time.now.utc : Time.now
write_attribute('created_at', t) if respond_to?(:created_at) && created_at.nil?
write_attribute('created_on', t) if respond_to?(:created_on) && created_on.nil?
write_attribute('updated_at', t) if respond_to?(:updated_at)
write_attribute('updated_on', t) if respond_to?(:updated_on)
end
create_without_timestamps
end