| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Civilgeo/ojs/plugins/generic/counter/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE schema SYSTEM "../../../lib/pkp/dtd/xmlSchema.dtd">
<!--
* schema.xml
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* COUNTER statistics plugin schema in XML.
-->
<schema version="0.2">
<!--
*
* TABLE counter_monthly_log
*
-->
<table name="counter_monthly_log">
<field name="year" type="I8">
<NOTNULL/>
</field>
<field name="month" type="I8">
<NOTNULL/>
</field>
<field name="journal_id" type="I8">
<NOTNULL/>
</field>
<field name="count_html" type="I8">
<NOTNULL/>
<DEFAULT VALUE="0"/>
</field>
<field name="count_pdf" type="I8">
<NOTNULL/>
<DEFAULT VALUE="0"/>
</field>
<field name="count_other" type="I8">
<NOTNULL/>
<DEFAULT VALUE="0"/>
</field>
<descr>Monthly COUNTER statistics</descr>
<index name="counter_monthly_log_key">
<col>year</col>
<col>month</col>
<col>journal_id</col>
<UNIQUE/>
</index>
</table>
</schema>