Sha256: b99193450a5181c3a39fa850fa3268c94c2724f9f6766096e1334785954b5cad
Contents?: true
Size: 429 Bytes
Versions: 152
Compression:
Stored size: 429 Bytes
Contents
module CassandraObject module Timestamps extend ActiveSupport::Concern included do attribute :created_at, type: :time#_with_zone attribute :updated_at, type: :time#_with_zone before_create do #|r| self.created_at ||= Time.current self.updated_at ||= Time.current end before_update if: :changed? do #|r| self.updated_at = Time.current end end end end
Version data entries
152 entries across 152 versions & 2 rubygems