-
Notifications
You must be signed in to change notification settings - Fork 1
/
dump.xml
executable file
·57 lines (57 loc) · 1.12 KB
/
dump.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
57
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<Table colCount="5" name="comments">
<tableInfo>
<columnInfo>
<column count="1">
<name>id</name>
<type>INT</type>
<length>11</length>
<null>0</null>
<autoinc>true</autoinc>
</column>
<column count="2">
<name>post_id</name>
<type>INT</type>
<length>10</length>
<null>1</null>
<autoinc>false</autoinc>
</column>
<column count="3">
<name>body</name>
<type>VARCHAR</type>
<length>21845</length>
<null>1</null>
<autoinc>false</autoinc>
</column>
<column count="4">
<name>created_at</name>
<type>DATETIME</type>
<length>19</length>
<null>1</null>
<autoinc>false</autoinc>
</column>
<column count="5">
<name>updated_at</name>
<type>DATETIME</type>
<length>19</length>
<null>1</null>
<autoinc>false</autoinc>
</column>
</columnInfo>
<pkeyInfo>
<primarykey count="1">id</primarykey>
</pkeyInfo>
<indexInfo>
<index count="1" name="PRIMARY" sequence="A">id</index>
</indexInfo>
</tableInfo>
<rowInfo rowCount="1">
<row count="1">
<id>1</id>
<post_id>2</post_id>
<body>asd</body>
<created_at>2009-06-08 22:03:22.0</created_at>
<updated_at>2009-06-08 22:03:22.0</updated_at>
</row>
</rowInfo>
</Table>