-
Notifications
You must be signed in to change notification settings - Fork 0
/
epiz_30365769_main.sql
112 lines (91 loc) · 2.93 KB
/
epiz_30365769_main.sql
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 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: sql304.epizy.com
-- Generation Time: Nov 16, 2021 at 11:12 AM
-- Server version: 5.7.35-38
-- PHP Version: 7.2.22
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `epiz_30365769_main`
--
-- --------------------------------------------------------
--
-- Table structure for table `customer`
--
CREATE TABLE `customer` (
`ID` int(11) NOT NULL,
`fname` varchar(30) NOT NULL,
`lname` varchar(30) NOT NULL,
`email` varchar(300) NOT NULL,
`propic` varchar(400) NOT NULL,
`balance` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` (`ID`, `fname`, `lname`, `email`, `propic`, `balance`) VALUES
(101, 'apoorv', 'mishra', '[email protected]', 'propics/apoorv.png', 109450),
(102, 'elon', 'musk', '[email protected]', 'propics/elon.png', 14400),
(103, 'arpit', 'mishra', '[email protected]', 'propics/arpit.jpg', 91500),
(104, 'mahima', 'mishra', '[email protected]', 'propics/mahima.jpg', 100150),
(105, 'neha', 'mishra', '[email protected]', 'propics/neha.jpg', 89500);
-- --------------------------------------------------------
--
-- Table structure for table `transfer`
--
CREATE TABLE `transfer` (
`transactionID` int(11) NOT NULL,
`fromID` int(11) NOT NULL,
`toID` int(11) NOT NULL,
`amount` int(11) NOT NULL,
`datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `transfer`
--
INSERT INTO `transfer` (`transactionID`, `fromID`, `toID`, `amount`, `datetime`) VALUES
(10000001, 102, 101, 100, '2021-11-15 18:53:39'),
(10000002, 103, 102, 10000, '2021-11-15 18:56:17'),
(10000003, 105, 101, 10000, '2021-11-15 20:14:01'),
(10000004, 101, 104, 50, '2021-11-15 20:29:22'),
(10000005, 101, 103, 1000, '2021-11-15 20:35:16'),
(10000006, 105, 103, 500, '2021-11-15 21:10:47');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `customer`
--
ALTER TABLE `customer`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `transfer`
--
ALTER TABLE `transfer`
ADD PRIMARY KEY (`transactionID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `customer`
--
ALTER TABLE `customer`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=106;
--
-- AUTO_INCREMENT for table `transfer`
--
ALTER TABLE `transfer`
MODIFY `transactionID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10000007;
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 */;