Holds the task description information for tasks in
workspaces.
Column Descriptions:
| Name | Type | Description |
| CMFTASK_ID | BIGINT NOT NULL | Foreign key to the CMFTASK table. Associates the
task description to a task. Forms a primary key together with
LANGUAGE_ID. |
| LANGUAGE_ID | INTEGER NOT NULL | Foreign key to the LANGUAGE table. The identifier
of the language. For a list of language components, see the
LANGUAGE table. Forms a primary key along with CMFTASK_ID. |
| NAME | VARCHAR (254) | The name of the task. |
| DESCRIPTION | VARCHAR (4000) | The description of the task. |
| 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> | CMFTASK_ID+LANGUAGE_ID | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_1131 | CMFTASK_ID | CMFTASK | CMFTASK_ID | Cascade |
| F_1132 | LANGUAGE_ID | LANGUAGE | LANGUAGE_ID | Cascade |