BlobObject

Metadata

  • Base Table Class: Entity
  • Default Size: User * Constants::MaxBlobsPerUser = 500

Fields

NameTypeSize (bytes)Description
IdInteger (signed)8The unique identifier of this BlobObject.
StatusSet of Status4
NameString48The long text identifier of this BlobObject.
VersionInteger (unsigned)4
ObjectTypeString24The short text identifier of this BlobObject.
BlobString10240
UpdateNumberInteger (unsigned)8A number that records every change that happens to a record. It is primarily used to avoid write after read problems when an intermediate write has changed the originally read record.
OwnerUserForeign key to User8The Id of the User that owns this BlobObject.
OwnerGroupForeign key to Group8The Id of the Group that owns this BlobObject.
OwnerFirmForeign key to Firm8The Id of the Firm that owns this BlobObject.
CreateUserForeign key to User8The Id of the User that created this BlobObject.
CreateTimestampInteger (unsigned)8The time at which this BlobObject was created.
UpdateUserForeign key to User8The Id of the User that last updated this BlobObject.
UpdateTimestampInteger (unsigned)8The time at which this BlobObject was last updated.

Foreign Keys

The following diagram shows the tables that have a foreign key link to the BlobObject table. All Table nodes can be clicked to take you to that table's definition page.

graph LR;
	User-->|PrefsBlob|BlobObject
	click User "/marketgrid/developer/model/tables/User"