forked from ishaangurnani/Chef2Door
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemailoptverification.sql
75 lines (61 loc) · 2.22 KB
/
emailoptverification.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
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 20, 2021 at 04:23 PM
-- Server version: 10.3.15-MariaDB
-- PHP Version: 7.2.19
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: `emailoptverification`
--
-- --------------------------------------------------------
--
-- Table structure for table `tblusers`
--
CREATE TABLE `tblusers` (
`id` int(11) NOT NULL,
`userName` varchar(150) DEFAULT NULL,
`emailId` varchar(150) DEFAULT NULL,
`ContactNumber` bigint(12) DEFAULT NULL,
`userPassword` varchar(200) DEFAULT NULL,
`regDate` timestamp NOT NULL DEFAULT current_timestamp(),
`emailOtp` int(6) DEFAULT NULL,
`isEmailVerify` int(1) DEFAULT NULL,
`lastUpdationDate` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tblusers`
--
INSERT INTO `tblusers` (`id`, `userName`, `emailId`, `ContactNumber`, `userPassword`, `regDate`, `emailOtp`, `isEmailVerify`, `lastUpdationDate`) VALUES
(2, 'Anuk', 'anuj@gmail.com', 1234567890, '5c428d8875d2948607f3e3fe134d71b4', '2021-09-19 03:39:22', 108303, 1, '2021-09-19 04:52:00'),
(3, 'Test User', 'test@gmail.com', 1234567890, 'f925916e2754e5e03f75dd58a5733251', '2021-09-19 04:51:46', 867056, 1, '2021-09-19 05:00:10'),
(5, 'Amit', 'amit@gmail.com', 234567890, '202cb962ac59075b964b07152d234b70', '2021-09-19 05:01:25', 247589, 1, '2021-09-19 05:04:54');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tblusers`
--
ALTER TABLE `tblusers`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tblusers`
--
ALTER TABLE `tblusers`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
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 */;