grp_line_link
- Last UpdatedNov 20, 2024
- 1 minute read
The grp_line_link table defines the many-to-many relationship between user groups and lines. This allows configuration of which users may or may not access each defined line. Every combination of line and user group will have a record in this table.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
grp_id |
int32 |
Y |
N |
Identifies the group |
|
line_id |
int32 |
Y |
N |
Identifies the line |
|
accss |
logical |
N |
N |
Specifies whether members of this group have permission to make operational changes to this line. Default = No. |
|
last_edit_comment |
string254 |
N |
Y |
Reserved for internal use to indicate why this record was changed |
|
last_edit_by |
string40 |
N |
N |
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 line_id to line. (Cascade delete)