-
Notifications
You must be signed in to change notification settings - Fork 0
/
librarydatabase.xml
52 lines (50 loc) · 1.83 KB
/
librarydatabase.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
<?xml version="1.0" encoding="utf-8"?>
<!--
- phpMyAdmin XML Dump
- version 5.1.1
- https://www.phpmyadmin.net
-
- Host: 127.0.0.1
- Generation Time: Jul 01, 2022 at 03:58 PM
- Server version: 10.4.22-MariaDB
- PHP Version: 8.1.1
-->
<pma_xml_export version="1.0" xmlns:pma="https://www.phpmyadmin.net/some_doc_url/">
<!--
- Structure schemas
-->
<pma:structure_schemas>
<pma:database name="librarydatabase" collation="utf8_bin" charset="utf8">
<pma:table name="books">
CREATE TABLE `books` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Name` text COLLATE utf8_bin NOT NULL,
`ISBN` text COLLATE utf8_bin NOT NULL,
`Rent Price` double NOT NULL,
`Quantity` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
</pma:table>
<pma:table name="clients">
CREATE TABLE `clients` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Client Name` text COLLATE utf8_bin NOT NULL,
`Book` text COLLATE utf8_bin NOT NULL,
`ISBN` text COLLATE utf8_bin NOT NULL,
`Rent Price` int(11) NOT NULL,
`Rent Date` datetime NOT NULL,
`Return Date` datetime DEFAULT NULL,
`Penalties Accumulated` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
</pma:table>
</pma:database>
</pma:structure_schemas>
<!--
- Database: 'librarydatabase'
-->
<database name="librarydatabase">
<!-- Table books -->
<!-- Table clients -->
</database>
</pma_xml_export>