AssignmentRecord

Assignment of an entity to another entity. For example, assignment of a deployment target as handler of another deployment target.

 

Name

Type (MS SQL)

Type (Oracle)

Type (PostgreSQL)

Nullable

Description

Id

BIGINT

NUMBER(20,0)

int8

not null unique

Id of the object

FromEntityId

BIGINT

NUMBER(20,0)

int8

not null

Reference to RlmObject

ToEntityId

BIGINT

NUMBER(20,0)

int8

not null

Reference to RlmObject

AssignmentType

INT

NUMBER(10,0)

int4

 

AssignmentType: 0: Assign, 1: Unassign

Timestamp

DATETIME

TIMESTAMP(4)

timestamp

not null

Timestamp of assignment

AssignmentValue

INT

NUMBER(10,0)

int4

not null

Assignment value

Foreign Keys

Name

Local References

Foreign References

FK_AssignmentRecord_From

FromEntityId

RlmObject

FK_AssignmentRecord_To

ToEntityId

RlmObject