9 |
ariadna |
1 |
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
2 |
<XMLDB PATH="blocks/openai_chat/db" VERSION="20240408" COMMENT="XMLDB file for Moodle blocks/openai_chat"
|
|
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
4 |
xsi:noNamespaceSchemaLocation="../../../lib/xmldb/xmldb.xsd"
|
|
|
5 |
>
|
|
|
6 |
<TABLES>
|
|
|
7 |
<TABLE NAME="block_openai_chat_log" COMMENT="Log of chat messages for block_openai_chat">
|
|
|
8 |
<FIELDS>
|
|
|
9 |
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
|
|
10 |
<FIELD NAME="userid" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="The ID of the user that sent the message"/>
|
|
|
11 |
<FIELD NAME="usermessage" TYPE="text" NOTNULL="true" SEQUENCE="false" COMMENT="The message sent by the user"/>
|
|
|
12 |
<FIELD NAME="airesponse" TYPE="text" NOTNULL="false" SEQUENCE="false" COMMENT="The reply generated by the AI in response to the user message"/>
|
|
|
13 |
<FIELD NAME="contextid" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false"/>
|
|
|
14 |
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="The time that the message was sent"/>
|
|
|
15 |
</FIELDS>
|
|
|
16 |
<KEYS>
|
|
|
17 |
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
|
|
18 |
<KEY NAME="userid" TYPE="foreign" FIELDS="userid" REFTABLE="user" REFFIELDS="id"/>
|
|
|
19 |
</KEYS>
|
|
|
20 |
<INDEXES>
|
|
|
21 |
<INDEX NAME="timecreated" UNIQUE="false" FIELDS="timecreated"/>
|
|
|
22 |
<INDEX NAME="user-time" UNIQUE="false" FIELDS="userid, timecreated"/>
|
|
|
23 |
</INDEXES>
|
|
|
24 |
</TABLE>
|
|
|
25 |
</TABLES>
|
|
|
26 |
</XMLDB>
|