install.xml 1.1 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8" ?>
2
<XMLDB PATH="local/asystgrade/db" VERSION="2024032201" COMMENT="XMLDB file for mod asystgrade plugin"
3
4
5
6
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="../../../lib/xmldb/xmldb.xsd"
>
    <TABLES>
7
        <TABLE NAME="local_asystgrade" COMMENT="Table for storing asystgrade data">
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
            <FIELDS>
                <FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" UNSIGNED="true" SEQUENCE="true"/>
                <FIELD NAME="question" TYPE="text" NOTNULL="true"/>
                <FIELD NAME="referenceanswer" TYPE="text" NOTNULL="true"/>
                <FIELD NAME="studentanswer" TYPE="text" NOTNULL="true"/>
                <FIELD NAME="observed_grade" TYPE="int" LENGTH="3" NOTNULL="true"/>
                <FIELD NAME="studentid" TYPE="int" LENGTH="10" NOTNULL="false"/>
                <FIELD NAME="recordid" TYPE="int" LENGTH="10" NOTNULL="false"/>
            </FIELDS>
            <KEYS>
                <KEY NAME="primary" TYPE="primary" FIELDS="id"/>
            </KEYS>
        </TABLE>
    </TABLES>
</XMLDB>