-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkvm.sql
More file actions
113 lines (87 loc) · 2.81 KB
/
kvm.sql
File metadata and controls
113 lines (87 loc) · 2.81 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
112
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Dec 04, 2020 at 03:47 AM
-- Server version: 5.7.31
-- PHP Version: 7.3.21
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `kvm`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
DROP TABLE IF EXISTS `admin`;
CREATE TABLE IF NOT EXISTS `admin` (
`name` varchar(50) NOT NULL DEFAULT 'admin',
`pass` varchar(50) NOT NULL DEFAULT 'admin'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`name`, `pass`) VALUES
('admin', 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `customer`
--
DROP TABLE IF EXISTS `customer`;
CREATE TABLE IF NOT EXISTS `customer` (
`name` varchar(50) NOT NULL,
`email` varchar(50) NOT NULL,
`phone` bigint(50) NOT NULL,
`pass` varchar(50) NOT NULL,
`book` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` (`name`, `email`, `phone`, `pass`, `book`) VALUES
('Kaustubh Mishra', '8956.kaustubh.secomb@gmail.com', 7796850929, '1618518141', 'kaustubh mishra1618518141.txt'),
('aakash', 'aakash@gmail.com', 83217720982, 'aakash', 'aakashaakash.txt');
-- --------------------------------------------------------
--
-- Table structure for table `inventory`
--
DROP TABLE IF EXISTS `inventory`;
CREATE TABLE IF NOT EXISTS `inventory` (
`name` varchar(50) NOT NULL,
`email` varchar(50) NOT NULL,
`phone` bigint(10) NOT NULL,
`pass` varchar(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `inventory`
--
INSERT INTO `inventory` (`name`, `email`, `phone`, `pass`) VALUES
('mitesh jaiman', 'jaimanparivar@gmail.com', 1234567890, 'mitsu');
-- --------------------------------------------------------
--
-- Table structure for table `supply`
--
DROP TABLE IF EXISTS `supply`;
CREATE TABLE IF NOT EXISTS `supply` (
`departure` varchar(10) NOT NULL,
`destination` varchar(10) NOT NULL,
`price` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `supply`
--
INSERT INTO `supply` (`departure`, `destination`, `price`) VALUES
('London', 'Georgia', 25000),
('Geogia', 'Italy', 10000),
('Paris', 'Georgia', 25000);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;