char_category_link
- Last UpdatedNov 20, 2024
- 1 minute read
The char_category_link table allows a characteristic to belong to many categories, and more than one characteristic to belong to a single category.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
category_id |
int32 |
Y |
N |
Identify category |
|
char_id |
int32 |
Y |
N |
Identify characteristic |
|
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 |
FK from category_id to category. (Cascade delete)
FK from char_id to characteristic. (Cascade delete)