Sha256: f60bde79ecdc629e63b7464a79d48fbfac42dbdfd783608773882479f09ae75f
Contents?: true
Size: 611 Bytes
Versions: 8
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true module Valkyrie::Persistence::Postgres module ORM # ActiveRecord class which the Postgres adapter uses for persisting data. # @!attribute id # @return [UUID] ID of the record # @!attribute metadata # @return [Hash] Hash of all metadata. # @!attribute created_at # @return [DateTime] Date created # @!attribute updated_at # @return [DateTime] Date updated # @!attribute internal_resource # @return [String] Name of {Valkyrie::Resource} model - used for casting. # class Resource < ActiveRecord::Base end end end
Version data entries
8 entries across 8 versions & 1 rubygems