-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxml.xml
More file actions
111 lines (109 loc) · 5.23 KB
/
Copy pathxml.xml
File metadata and controls
111 lines (109 loc) · 5.23 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="utf-8"?>
<!--
- phpMyAdmin XML Dump
- version 3.5.1
- http://www.phpmyadmin.net
-
- Host: localhost
- Generation Time: Mar 11, 2013 at 03:33 AM
- Server version: 5.5.25
- PHP Version: 5.4.4
-->
<pma_xml_export version="1.0" xmlns:pma="http://www.phpmyadmin.net/some_doc_url/">
<!--
- Structure schemas
-->
<pma:structure_schemas>
<pma:database name="microblog" collation="utf8_general_ci" charset="utf8">
<pma:table name="messages">
CREATE TABLE `messages` (
`message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`message_txt` varchar(2000) NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`time_stamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`message_id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;
</pma:table>
<pma:table name="users">
CREATE TABLE `users` (
`user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_name` text NOT NULL,
`user_hash` char(32) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8;
</pma:table>
</pma:database>
</pma:structure_schemas>
<!--
- Database: 'microblog'
-->
<database name="microblog">
<!-- Table messages -->
<table name="messages">
<column name="message_id">46</column>
<column name="message_txt">First Blog Post</column>
<column name="user_id">47</column>
<column name="time_stamp">2013-03-10 22:10:57</column>
</table>
<table name="messages">
<column name="message_id">47</column>
<column name="message_txt">second post - IT WORKS!</column>
<column name="user_id">48</column>
<column name="time_stamp">2013-03-10 22:13:32</column>
</table>
<table name="messages">
<column name="message_id">48</column>
<column name="message_txt">its working</column>
<column name="user_id">48</column>
<column name="time_stamp">2013-03-10 22:14:03</column>
</table>
<table name="messages">
<column name="message_id">49</column>
<column name="message_txt">this is a longer post to see what it will look like with a longer post with more text then the others and a longer post wos is a longer post to see what it will look like with a longer post with more text then the others and a longer post wos is a longer post to see what it will look like with a longer post with more text then the others and a longer post wos is a longer post to see what it will look like with a longer post with more text then the others and a longer post wos is a longer post to see what it will look like with a longer post with more text then the others and a longer post wos is a longer post to see what it will look like with a longer post with more text then the others and a longer post wo</column>
<column name="user_id">49</column>
<column name="time_stamp">2013-03-10 22:15:40</column>
</table>
<table name="messages">
<column name="message_id">50</column>
<column name="message_txt">testing Blog post order</column>
<column name="user_id">49</column>
<column name="time_stamp">2013-03-10 22:21:44</column>
</table>
<table name="messages">
<column name="message_id">51</column>
<column name="message_txt">more blog posts</column>
<column name="user_id">49</column>
<column name="time_stamp">2013-03-10 22:29:13</column>
</table>
<table name="messages">
<column name="message_id">52</column>
<column name="message_txt">alex blog post - typing typing type type
alex blog post - typing typing type type
alex blog post - typing typing type type
alex blog post - typing typing type typealex blog post - typing typing type typealex blog post - typing typing type type</column>
<column name="user_id">50</column>
<column name="time_stamp">2013-03-10 22:29:58</column>
</table>
<!-- Table users -->
<table name="users">
<column name="user_id">47</column>
<column name="user_name">user</column>
<column name="user_hash">1a1dc91c907325c69271ddf0c944bc72</column>
</table>
<table name="users">
<column name="user_id">48</column>
<column name="user_name">newuser2</column>
<column name="user_hash">1a1dc91c907325c69271ddf0c944bc72</column>
</table>
<table name="users">
<column name="user_id">49</column>
<column name="user_name">blogUser</column>
<column name="user_hash">1a1dc91c907325c69271ddf0c944bc72</column>
</table>
<table name="users">
<column name="user_id">50</column>
<column name="user_name">alex</column>
<column name="user_hash">1a1dc91c907325c69271ddf0c944bc72</column>
</table>
</database>
</pma_xml_export>