-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.xml
32 lines (29 loc) · 1012 Bytes
/
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
<?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="btJoin">
<field name="bID" type="integer">
<unsigned/>
<key/>
</field>
</table>
<table name="btJoinUser">
<field name="bID" type="integer">
<unsigned/>
<key/>
</field>
<field name="uID" type="integer">
<unsigned/>
<key/>
</field>
<field name="dateTime" type="timestamp">
<deftimestamp/>
</field>
<field name="comment" type="text">
<default value=""/>
</field>
<references table="btJoin" onupdate="cascade" ondelete="cascade">
<column local="bID" foreign="bID" />
</references>
</table>
</schema>