-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.xml
49 lines (47 loc) · 1.22 KB
/
schema.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE schema SYSTEM "../../../lib/pkp/dtd/xmlSchema.dtd">
<!--
* schema.xml
*
* Copyright (c) 2014-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Static pages plugin schema in XML.
*
-->
<schema version="0.2">
<!--
*
* TABLE submission_iter_fields
*
-->
<table name="submission_iter_fields">
<field name="submission_id" type="I8">
<NOTNULL/>
</field>
<field name="pub_year" type="I" size="8">
</field>
<field name="pub_issue" type="C" size="48">
</field>
<field name="last_name" type="C" size="128">
</field>
<field name="short_title" type="C" size="128">
</field>
<field name="discipline1" type="C" size="128">
</field>
<field name="discipline2" type="C" size="128">
</field>
<field name="location1" type="C" size="128">
</field>
<field name="location2" type="C" size="128">
</field>
<field name="century1" type="C" size="16">
</field>
<field name="century2" type="C" size="16">
</field>
<field name="notes" type="X" size="255">
</field>
<descr>Fields relevant to the Iter</descr>
</table>
</schema>