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.3.5 lib/mongoid/timestamps/created/short.rb
mongoid-7.3.4 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.11 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.6 lib/mongoid/timestamps/created/short.rb
mongoid-7.3.3 lib/mongoid/timestamps/created/short.rb
mongoid-7.3.2 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.5 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.10 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.9 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.4 lib/mongoid/timestamps/created/short.rb
mongoid-7.3.1 lib/mongoid/timestamps/created/short.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/lib/mongoid/timestamps/created/short.rb
mongoid-7.3.0 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.3 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.8 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.2 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.1 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.7 lib/mongoid/timestamps/created/short.rb
mongoid-7.2.0 lib/mongoid/timestamps/created/short.rb
mongoid-7.1.6 lib/mongoid/timestamps/created/short.rb