-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiaf_database.sql
161 lines (133 loc) · 5.48 KB
/
iaf_database.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 13, 2021 at 08:57 AM
-- 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: `iaf_database`
--
-- --------------------------------------------------------
--
-- Table structure for table `applicationusers`
--
CREATE TABLE `applicationusers` (
`id` int(4) NOT NULL,
`candidateID` int(4) NOT NULL,
`email` varchar(100) NOT NULL,
`height` int(4) NOT NULL,
`weight` int(4) NOT NULL,
`ssc` int(4) NOT NULL,
`hsc` int(4) NOT NULL,
`hscENG` int(4) NOT NULL,
`hscPHY` int(4) NOT NULL,
`Grad` int(4) NOT NULL,
`Glasses` tinyint(1) NOT NULL,
`Created At` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6),
`Application` varchar(100) NOT NULL,
`JobDesc` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `applicationusers`
--
INSERT INTO `applicationusers` (`id`, `candidateID`, `email`, `height`, `weight`, `ssc`, `hsc`, `hscENG`, `hscPHY`, `Grad`, `Glasses`, `Created At`, `Application`, `JobDesc`) VALUES
(23, 28, '[email protected]', 180, 55, 80, 80, 80, 80, 0, 1, '2021-08-11 17:34:45.163442', 'Rejected', 'Group X'),
(24, 28, '[email protected]', 180, 80, 80, 80, 80, 80, 8, 0, '2021-08-11 17:34:46.490824', 'Rejected', 'Flying Officer'),
(25, 28, '[email protected]', 180, 65, 80, 80, 80, 80, 8, 0, '2021-08-11 17:39:02.499110', 'Approved', 'Flying Officer'),
(26, 28, '[email protected]', 180, 55, 80, 80, 80, 80, 0, 0, '2021-09-05 08:19:01.491459', 'Rejected', 'Group X'),
(27, 31, '[email protected]', 200, 80, 80, 80, 80, 80, 8, 0, '2021-09-05 08:19:03.256852', 'Approved', 'Garud Commando'),
(28, 33, '[email protected]', 200, 80, 80, 80, 80, 80, 8, 0, '2021-09-13 06:56:29.508559', 'Pending', 'Garud Commando');
-- --------------------------------------------------------
--
-- Table structure for table `usercontact`
--
CREATE TABLE `usercontact` (
`id` int(4) NOT NULL,
`Message` varchar(255) NOT NULL,
`Email` varchar(255) NOT NULL,
`CreatedAt` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6),
`nexID` int(4) NOT NULL,
`Resolved` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `usercontact`
--
INSERT INTO `usercontact` (`id`, `Message`, `Email`, `CreatedAt`, `nexID`, `Resolved`) VALUES
(28, 'this is misha name change to meera', '[email protected]', '2021-08-08 14:07:16.247755', 10, 1),
-- --------------------------------------------------------
--
-- Table structure for table `userregisdata`
--
CREATE TABLE `userregisdata` (
`id` int(4) NOT NULL,
`firstName` varchar(100) NOT NULL,
`lastName` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`gender` text NOT NULL,
`city` text NOT NULL,
`state` text NOT NULL,
`password` varchar(255) NOT NULL,
`CreatedAt` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `userregisdata`
--
INSERT INTO `userregisdata` (`id`, `firstName`, `lastName`, `email`, `gender`, `city`, `state`, `password`, `CreatedAt`) VALUES
(27, 'Mayuresh', 'Samant', '[email protected]', 'Male', 'Mayu', 'Maharashtra', '$2y$10$pnDSgBSOhnaDgxOT.1XLN.q/5UeXYOlxFrUQYQEZRWOrSa.FPrgby', '2021-08-08 08:51:58.118170'),
(28, 'Misha', 'Mishra', '[email protected]', 'Female', 'Mumbai', 'Maharashtra', '$2y$10$um/3hDWb/XOg9Lo6SOcOMuf.658/tT4sb6ZzTSv7Pu/R7FioSz6jm', '2021-08-10 11:50:33.594584'),
(31, 'Manoj', 'Saini', '[email protected]', 'Male', 'Navi Mumbai', 'Maharashtra', '$2y$10$cXFURJGnZymAKfZhDtZ52.XRS.Hfnk1zx.41sFa5q9jSidrHpAp8u', '2021-09-13 06:53:24.060573'),
(33, 'msi', 'msi', '[email protected]', 'Male', 'msi', 'Goa', '$2y$10$q6V4YQNE0K/4kVSjNCAd9e1QkTi4lddiegt8axRoFv63l5IdKP6HO', '2021-09-13 06:54:31.841179');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `applicationusers`
--
ALTER TABLE `applicationusers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `usercontact`
--
ALTER TABLE `usercontact`
ADD PRIMARY KEY (`nexID`);
--
-- Indexes for table `userregisdata`
--
ALTER TABLE `userregisdata`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `applicationusers`
--
ALTER TABLE `applicationusers`
MODIFY `id` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;
--
-- AUTO_INCREMENT for table `usercontact`
--
ALTER TABLE `usercontact`
MODIFY `nexID` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `userregisdata`
--
ALTER TABLE `userregisdata`
MODIFY `id` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;
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 */;