module Epiphy::Entity::Timestamp

Add created_at and updated_at field to an entity.

Public Class Methods

included(base) click to toggle source
# File lib/epiphy/entity/timestamp.rb, line 8
def self.included(base)
  base.send :attr_accessor, :created_at
end