Commit | Line | Data |
---|---|---|
bbd0e548 DW |
1 | <?xml version="1.0" encoding="UTF-8" ?> |
2 | <XMLDB PATH="mod/assign/feedback/file/db" VERSION="20120423" COMMENT="XMLDB file for Moodle mod/assign/feedback/file" | |
3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
4 | xsi:noNamespaceSchemaLocation="../../../../../lib/xmldb/xmldb.xsd" | |
5 | > | |
6 | <TABLES> | |
7 | <TABLE NAME="assignfeedback_file" COMMENT="Stores info about the number of files submitted by a student."> | |
8 | <FIELDS> | |
7a18f49c PS |
9 | <FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/> |
10 | <FIELD NAME="assignment" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/> | |
11 | <FIELD NAME="grade" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/> | |
12 | <FIELD NAME="numfiles" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false" COMMENT="The number of files uploaded by a grader."/> | |
bbd0e548 DW |
13 | </FIELDS> |
14 | <KEYS> | |
7a18f49c PS |
15 | <KEY NAME="primary" TYPE="primary" FIELDS="id" COMMENT="Unique id for this feedback value."/> |
16 | <KEY NAME="assignment" TYPE="foreign" FIELDS="assignment" REFTABLE="assign" REFFIELDS="id" COMMENT="The assignment instance this feedback relates to."/> | |
17 | <KEY NAME="grade" TYPE="foreign" FIELDS="grade" REFTABLE="assign_grades" REFFIELDS="id" COMMENT="The grade instance this feedback relates to."/> | |
bbd0e548 DW |
18 | </KEYS> |
19 | </TABLE> | |
20 | </TABLES> | |
21 | </XMLDB> |