ACTIVITY_TRANSITION
Description
This table stores information about activity transitions.
Columns
| Column Name | Data Type | Description |
| ID | bigint(20) | Primary key, unique identifier for each activity transition. |
| NAME | varchar(255) | The name of the activity transition. |
| TARGET | varchar(255) | The target of the activity transition. |
| CONDITION | longtext | The condition for the activity transition. |
| CONDITION_PORT_INDEX | int(11) | The index of the condition port. |
| DURATION_IN_SECONDS | bigint(20) | The duration of the activity transition in seconds. |
| ACTIVITY_TRANSITIONS_STATE 0 | bigint(20) | Foreign key referencing the STATE table. |
| ACTIVITY_TRANSITIONS_HJORDER | int(11) | The order of the activity transition. |
Foreign Key Relationships
- ACTIVITY_TRANSITIONS_STATE 0 references STATE_(ID)