FFS_CHAT_MESSAGE

Used to store messages for the Collaboration chats.

Details

  • Schema: FUSION

  • Object owner: FFS

  • Object type: TABLE

  • Tablespace: DATA

Primary Key

Name Columns

FFS_CHAT_MESSAGE_PK

MESSAGE_ID

Columns

Name Datatype Length Precision Not-null Comments
MESSAGE_ID NUMBER 19 Yes Unique identifier for chat message.
CHAT_ID NUMBER 18 Yes Id of the chat for the message.
SEQUENCE_NUMBER NUMBER 5 Sequence number for the chat message.
AUTHOR NUMBER 18 User id of the author of the message.
SENT_TIME TIMESTAMP Time at which the message is sent.
TEXT VARCHAR2 4000 Actual Content Of The Sent Message.
SYSTEM_MESSAGE VARCHAR2 512 Type of system messages. Examples are user_left, user_joined, etc. For regular messages value will be 'normal'.
ATTACHMENT_INFO VARCHAR2 4000 Attachment data in JSON format.
TRANSACTION_INFO VARCHAR2 1024 Transaction data in JSON format.
MESSAGE_INFO VARCHAR2 1024 Message metadata in JSON format.
AUTHOR_TYPE NUMBER 2 Yes Type of author. Values can be 0 for user, 1 for chatbot.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Indexes

Index Uniqueness Tablespace Columns
FFS_CHAT_MESSAGE_N1 Non Unique DATA AUTHOR
FFS_CHAT_MESSAGE_N2 Non Unique DATA CHAT_ID
FFS_CHAT_MESSAGE_PK Unique DATA MESSAGE_ID