Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?xml version="1.0" encoding="UTF-8" ?>
2
<XMLDB PATH="report/coursestats/db" VERSION="20171007" COMMENT="XMLDB file for Moodle report/coursestats"
3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
    xsi:noNamespaceSchemaLocation="../../../lib/xmldb/xmldb.xsd"
5
>
6
  <TABLES>
7
    <TABLE NAME="report_coursestats" COMMENT="This table stores information about course usage statistics.">
8
      <FIELDS>
9
        <FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
10
        <FIELD NAME="courseid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false" COMMENT="Course id"/>
11
        <FIELD NAME="prev_usage_type" TYPE="char" LENGTH="25" NOTNULL="false" SEQUENCE="false" COMMENT="This field stores the name of the previous type of usage in the course."/>
12
        <FIELD NAME="curr_usage_type" TYPE="char" LENGTH="25" NOTNULL="true" SEQUENCE="false" COMMENT="This field stores the name of the current type of usage in the course."/>
13
        <FIELD NAME="last_update" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false" COMMENT="This field stores the date of the last update performed in the course."/>
14
        <FIELD NAME="categoryid" TYPE="int" LENGTH="10" NOTNULL="false" DEFAULT="0" SEQUENCE="false"/>
15
      </FIELDS>
16
      <KEYS>
17
        <KEY NAME="primary" TYPE="primary" FIELDS="id"/>
18
        <KEY NAME="courseid_fk" TYPE="foreign" FIELDS="courseid" REFTABLE="course" REFFIELDS="id" COMMENT="Foreign key that references the course table"/>
19
        <KEY NAME="categoryid_fk" TYPE="foreign" FIELDS="categoryid" REFTABLE="course_categories" REFFIELDS="id"/>
20
      </KEYS>
21
    </TABLE>
22
  </TABLES>
23
</XMLDB>