ent_attr
- Last UpdatedNov 12, 2024
- 1 minute read
The ent_attr table allows an arbitrary number of user-defined attributes to be assigned to any physical entity.
Available entity attributes must already be defined in the attr table with an attr_grp value = 2.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
ent_id |
int32 |
Y |
N |
Uniquely identify entity |
|
attr_id |
int32 |
Y |
N |
Identify attribute |
|
attr_value |
string1700 |
N |
Y |
Value for this combination |
|
notes |
nvarchar(max) |
N |
Y |
Notes for this combination |
|
last_edit_comment |
string254 |
N |
Y |
Reserved for internal use to indicate why this record was changed |
|
last_edit_by |
string40 |
N |
Y |
Who last changed this record |
|
last_edit_at |
tdatetime |
N |
N |
When this record was last changed |
|
row_id |
bigint64 |
N |
N |
Unique row identifier, for audit trail. |
FK from ent_id to ent. (Cascade delete)
FK from attr_id to attr. (Cascade delete)