-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.xml
43 lines (41 loc) · 1.15 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE schema SYSTEM "../../../dtd/xmlSchema.dtd">
<!--
* plugins/generic/reviewqualitycollector/schema.xml
*
* Copyright (c) 2013-2018 Simon Fraser University
* Copyright (c) 2018-2019 Lutz Prechelt
* Distributed under the GNU General Public License, Version 3.
*
* RQC plugin table for storing failed RQC calls to be retried ("delayed call").
-->
<schema version="0.2">
<!--
*
* TABLE rqc_delayed_calls
*
-->
<table name="rqc_delayed_calls">
<field name="call_id" type="I8">
<KEY />
<AUTOINCREMENT/>
</field>
<field name="journal_id" type="I">
<NOTNULL/>
</field>
<field name="retries" type="I">
<NOTNULL/>
<DEFAULT VALUE="0"/>
</field>
<field name="orig_try_ts" type="I8">
<NOTNULL/>
</field>
<field name="last_try_ts" type="I8">
<NOTNULL/>
</field>
<field name="call_content" type="X2">
<NOTNULL/>
</field>
<descr>RQC data of failed calls to be retried</descr>
</table>
</schema>