Holds the Task Group Comments for Workspaces
Column Descriptions:
| Name | Type | Description |
| CMFTGCMT_ID | BIGINT NOT NULL | Primary Key. Uniquely identifies a task group
comment. |
| CMFTASKGRP_ID | BIGINT NOT NULL | Foreign key to the CMFTASKGRP table. Associates
task group comments to a task group. |
| POSTEDDATE | TIMESTAMP | The date the comment was posted. |
| MEMBER_ID | BIGINT NOT NULL | Foreign key to the MEMBER table. Indicates which
member posted the comment. |
| COMMENTS | VARCHAR (4000) | The comments for the task group. |
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | CMFTGCMT_ID | Primary Key |
| I0000890 | CMFTASKGRP_ID | Non-Unique Index |
| I0000891 | MEMBER_ID | Non-Unique Index |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_1129 | CMFTASKGRP_ID | CMFTASKGRP | CMFTASKGRP_ID | Cascade |
| F_1130 | MEMBER_ID | MEMBER | MEMBER_ID | Cascade |