-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstaticwebsite (1).sql
120 lines (99 loc) · 3.48 KB
/
staticwebsite (1).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
113
114
115
116
117
118
119
120
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 05, 2021 at 01:45 PM
-- Server version: 10.4.19-MariaDB
-- PHP Version: 8.0.7
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: `staticwebsite`
--
-- --------------------------------------------------------
--
-- Table structure for table `form`
--
CREATE TABLE `form` (
`form_id` int(8) NOT NULL,
`user_email` varchar(30) NOT NULL,
`user_name` varchar(30) NOT NULL,
`user_mess` text NOT NULL,
`user_ph` int(14) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `form`
--
INSERT INTO `form` (`form_id`, `user_email`, `user_name`, `user_mess`, `user_ph`) VALUES
(1, '[email protected]', 'sourav paul', 'hello', 23356099),
(2, '[email protected]', 'subham', 'hello', 23356099),
(3, '[email protected]', 'subhamK', 'demo', 877750552),
(4, '[email protected]', 'test', 'hi', 8777505),
(5, '[email protected]', 'test', 'hi', 8777505),
(6, '[email protected]', 'test', 'hi', 8777505),
(7, '[email protected]', 'test', 'hi', 8777505),
(8, 'odyseeyconsultancygroup.ceo@gm', 'test', 'hi', 8777505),
(9, 'odyseeyconsultancygroup.ceo@gm', 'test', 'hi', 8777505),
(10, '[email protected]', 'der', 'hi', 8777505),
(11, '[email protected]', 'der', 'hi', 8777505),
(12, '[email protected]', 'der', 'hi', 8777505),
(13, '[email protected]', 'sunny', 'demo 1', 1234568),
(14, '[email protected]', 'hel', 'lovely', 2147483647),
(15, '[email protected]', 'tamal', 'test 4', 2147483647),
(16, '[email protected]', 'haha', 'haha haha', 123456789),
(17, '[email protected]', 'i am haha', 'hello test', 1234567890);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`sno` int(8) NOT NULL,
`user_email` varchar(30) NOT NULL,
`user_pass` varchar(255) NOT NULL,
`timestamp` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`sno`, `user_email`, `user_pass`, `timestamp`) VALUES
(2, 'test', '$2y$10$lcgDFyQ5pblM381Dgadpa.6fPLHWqz6tY6EuZxC0jwgstZNrleWgW', '2021-07-03 20:48:19'),
(3, 'admin', '$2y$10$uNPslsU2lIcIuMDzvt3jreigM9QEMCjSMXZVWEetqIoejroEhECu2', '2021-07-03 21:02:42'),
(4, 'haha', '$2y$10$jFJ1InlSDYn8LtKDPuTmRueZA7PT6hiQmgICKDUGN7WFH/PrUe/tK', '2021-07-03 21:07:42'),
(5, 'haha2', '$2y$10$8TGbg/oIMN1DZ727Y0Jby.gg50/2kWfb1krwaVOiEo/g6/dbfnm2.', '2021-07-03 22:02:37'),
(6, 'haha3', '$2y$10$P/rew3.MXiWNsUjFzo5bXOUIhbvoQLXdTcNKHQH7PwkHJEJjYWAay', '2021-07-05 00:21:06');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `form`
--
ALTER TABLE `form`
ADD PRIMARY KEY (`form_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`sno`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `form`
--
ALTER TABLE `form`
MODIFY `form_id` int(8) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `sno` int(8) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
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 */;