labor_dept_cat_link
- Last UpdatedNov 20, 2024
- 1 minute read
Note: This table is currently not used.
The labor_dept_cat_link table defines the allowable combinations of labor categories and labor departments, and what the standard crew size is for such a combination. If there are no records for a particular labor category, it is usable for all departments, and if there are no records for a particular department, all categories may be used, as it is not reasonable to define a department or category that could never be used.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
dept_id |
string40 |
Y |
N |
Possible department |
|
lab_cd |
string40 |
Y |
N |
Possible labor category |
|
std_crew |
tfloat |
N |
Y |
Standard number of workers for this category in this department |
|
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 lab_cd to labor_cat. (Cascade delete)
FK from dept_id to labor_dept. (Cascade delete)