<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE schema SYSTEM "../../dtd/xmlSchema.dtd">

<!--
  * metadata.xml
  *
  * Copyright (c) 2000-2012 John Willinsky
  * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
  *
  * Citation tables.
  *
  * $Id$
  -->

<schema version="0.2">
	<!--
	  *
	  * TABLE citations
	  *
	  -->
	<table name="citations">
		<field name="citation_id" type="I8">
			<KEY />
			<AUTOINCREMENT/>
		</field>
		<field name="assoc_type" type="I8">
			<NOTNULL/>
			<DEFAULT VALUE="0"/>
		</field>
		<field name="assoc_id" type="I8">
			<NOTNULL/>
			<DEFAULT VALUE="0"/>
		</field>
		<field name="citation_state" type="I8">
			<NOTNULL/>
		</field>
		<field name="raw_citation" type="X">
			<NOTNULL/>
		</field>
		<field name="edited_citation" type="X"/>
		<field name="parse_score" type="I8"/>
		<field name="lookup_score" type="I8"/>
		<descr>Citations</descr>
		<index name="citations_assoc">
			<col>assoc_type</col>
			<col>assoc_id</col>
		</index>
	</table>

	<!--
	  *
	  * TABLE citation_settings
	  *
	  -->
	<table name="citation_settings">
		<field name="citation_id" type="I8">
			<NOTNULL />
		</field>
		<field name="locale" type="C2" size="5">
			<NOTNULL />
			<DEFAULT VALUE=""/>
		</field>
		<field name="setting_name" type="C2" size="255">
			<NOTNULL />
		</field>
		<field name="setting_value" type="X"/>
		<field name="setting_type" type="C2" size="6">
			<NOTNULL/>
		</field>
		<descr>Citation settings</descr>
		<index name="citation_settings_citation_id">
			<col>citation_id</col>
		</index>
		<index name="citation_settings_pkey">
			<col>citation_id</col>
			<col>locale</col>
			<col>setting_name</col>
			<UNIQUE />
		</index>
	</table>
</schema>
