MESSAGE
Description
This table stores messages.
Columns
| Column Name | Data Type | Description |
| ID | bigint | The unique identifier of the message. |
| RESPONSE_DESTINATION | varchar | The destination of the response. |
| SERVICE | varchar | The service associated with the message. |
| TEXT | longtext | The text of the message. |
| EVENT_MESSAGE_ID | bigint | The foreign key referencing the ID column of the EVENT table. |
Foreign Key Relationships
- EVENT_MESSAGE_ID references EVENT (ID)