grp_ent_link
- Last UpdatedNov 20, 2024
- 1 minute read
The grp_ent_link table defines the many-to-many relationship between user groups and entities. This allows configuration of which users may / may not log onto and control each defined entity. There should be a record in this table for every combination of entity and user group.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
grp_id |
int32 |
Y |
N |
Group ID |
|
ent_id |
int32 |
Y |
N |
Entity ID |
|
accss |
logical |
N |
N |
May members of this group log into this entity. Default = No. |
|
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 |
ID 1 |
N |
N |
Unique row identifier, for audit trail |
FK from grp_id to grp_name. (Cascade delete)
FK from ent_id to ent. (Cascade delete)