-
Notifications
You must be signed in to change notification settings - Fork 6
/
db.xml
56 lines (54 loc) · 1.88 KB
/
db.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
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<schema
xmlns="http://www.concrete5.org/doctrine-xml/0.5"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.concrete5.org/doctrine-xml/0.5 http://concrete5.github.io/doctrine-xml/doctrine-xml-0.5.xsd">
<table name="AttributeFormsAttributeValues">
<field name="afID" type="integer">
<unsigned/>
<key/>
<default value="0" />
</field>
<field name="akID" type="integer">
<unsigned/>
<key/>
<default value="0"/>
</field>
<field name="avID" type="integer">
<unsigned/>
<key/>
<default value="0"/>
</field>
</table>
<table name="atAttributeSwitcher">
<field name="avID" type="integer" size="10">
<unsigned/>
<key/>
</field>
<field name="value" type="smallint" size="1">
<default value="0"/>
<notnull/>
</field>
</table>
<table name="atAttributeSwitcherSettings">
<field name="akID" type="integer" size="10">
<unsigned/>
<key/>
</field>
<field name="akCheckedByDefault" type="smallint" size="1">
<default value="0"/>
<notnull/>
</field>
<field name="akLabelText" type="string" size="255"/>
<field name="checkedActions" type="text"></field>
<field name="uncheckedActions" type="text"></field>
<field name="indentation" type="integer"></field>
</table>
<table name="atEmailSettings">
<field name="akID" type="integer" size="10">
<unsigned/>
<key/>
<default value="0"/>
</field>
<field name="akEmailPlaceholder" type="string" size="255"/>
</table>
</schema>