Sha256: fc2addf7da6906dc498100e4e7aca8737a337b1c7fbef91b6917a33e9dfd091f
Contents?: true
Size: 397 Bytes
Versions: 76
Compression:
Stored size: 397 Bytes
Contents
module CassandraObject module Timestamps extend ActiveSupport::Concern included do attribute :created_at, type: :time attribute :updated_at, type: :time before_create do self.created_at ||= Time.current self.updated_at ||= Time.current end before_update if: :changed? do self.updated_at = Time.current end end end end
Version data entries
76 entries across 76 versions & 3 rubygems