aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/DB/schemDiffData/unsigned.xml
blob: e89fd6a5d4ea99c5e7b13c3c688bcd7c4c470a70 (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="utf-8" ?>
<database>

	<table>

		<!--
		Scheduled background jobs.
		See OC\BackgroundJob\JobList.
		-->
		<name>*dbprefix*jobs</name>

		<declaration>

			<field>
				<name>id</name>
				<type>integer</type>
				<default>0</default>
				<notnull>true</notnull>
				<autoincrement>1</autoincrement>
				<unsigned>true</unsigned>
				<length>4</length>
			</field>

			<field>
				<name>class</name>
				<type>text</type>
				<default></default>
				<notnull>true</notnull>
				<length>255</length>
			</field>

			<field>
				<name>argument</name>
				<type>text</type>
				<default></default>
				<notnull>true</notnull>
				<length>4000</length>
			</field>

			<field>
				<!-- timestamp when the job was executed the last time -->
				<name>last_run</name>
				<type>integer</type>
				<default></default>
				<notnull>false</notnull>
			</field>

			<field>
				<!-- timestamp when the job was checked if it needs execution the last time -->
				<name>last_checked</name>
				<type>integer</type>
				<default></default>
				<notnull>false</notnull>
			</field>

			<field>
				<!-- timestamp when the job was reserved the last time, 1 day timeout -->
				<name>reserved_at</name>
				<type>integer</type>
				<default></default>
				<notnull>false</notnull>
			</field>

		</declaration>

	</table>

</database>