Sha256: 989bc72d725975f5d5fc13abfd55e3b4d2c2ef686d4efa88c871c24e0f783437

Contents?: true

Size: 448 Bytes

Versions: 27

Compression:

Stored size: 448 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

module Mongoid
  module Timestamps
    module Created

      # Adds a created_at timestamp to the document, but it is stored as c_at
      # with a created_at alias.
      module Short
        extend ActiveSupport::Concern

        included do
          include Created
          fields.delete("created_at")
          field :c_at, type: Time, as: :created_at
        end
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
mongoid-7.1.5 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.0.rc1 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.4 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.2 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.1 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.0 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.0.rc0 lib/mongoid/timestamps/created/short.rb