-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheduauth.sql
More file actions
241 lines (194 loc) · 7.23 KB
/
eduauth.sql
File metadata and controls
241 lines (194 loc) · 7.23 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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
-- phpMyAdmin SQL Dump
-- version 5.1.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 12, 2023 at 11:32 AM
-- Server version: 10.4.22-MariaDB
-- PHP Version: 7.4.28
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: `student`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbladmin`
--
CREATE TABLE `tbladmin` (
`ID` int(10) NOT NULL,
`AdminName` varchar(120) DEFAULT NULL,
`UserName` varchar(120) DEFAULT NULL,
`MobileNumber` bigint(10) DEFAULT NULL,
`Email` varchar(200) DEFAULT NULL,
`Password` varchar(200) DEFAULT NULL,
`AdminRegdate` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbladmin`
--
INSERT INTO `tbladmin` (`ID`, `AdminName`, `UserName`, `MobileNumber`, `Email`, `Password`, `AdminRegdate`) VALUES
(1, 'Mayuri K', 'mayurik', 9090909090, 'mayuri.infospace@gmail.com', 'cd92a26534dba48cd785cdcc0b3e6bd1', '2023-02-12 04:36:52');
-- --------------------------------------------------------
--
-- Table structure for table `tblclass`
--
CREATE TABLE `tblclass` (
`ID` int(5) NOT NULL,
`ClassName` varchar(50) DEFAULT NULL,
`Section` varchar(20) DEFAULT NULL,
`CreationDate` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tblclass`
--
INSERT INTO `tblclass` (`ID`, `ClassName`, `Section`, `CreationDate`) VALUES
(1, 'First Standard', 'A', '2023-02-12 09:47:47'),
(2, 'Second Standard', 'A', '2023-02-12 09:48:29'),
(3, 'Third Standard', 'A', '2023-02-12 09:49:06');
-- --------------------------------------------------------
--
-- Table structure for table `tblnotice`
--
CREATE TABLE `tblnotice` (
`ID` int(5) NOT NULL,
`NoticeTitle` mediumtext DEFAULT NULL,
`ClassId` int(10) DEFAULT NULL,
`NoticeMsg` mediumtext DEFAULT NULL,
`CreationDate` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tblnotice`
--
INSERT INTO `tblnotice` (`ID`, `NoticeTitle`, `ClassId`, `NoticeMsg`, `CreationDate`) VALUES
(1, 'Notice regarding Christmas Holiday', 1, '<p style=\"box-sizing: inherit; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-family: Roboto; font-size: 15px; line-height: 26px; color: rgb(68, 68, 68);\">Dear Parent<br style=\"box-sizing: inherit;\">The classes will remain off on 25.12.20(Friday) on account of Christmas and on 26.12.20(Saturday) on account of fourth Saturday.<br style=\"box-sizing: inherit;\">However the office will remain open on 26.12.20(Saturday) between 10:00am to 2:00pm.</p><p style=\"box-sizing: inherit; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-family: Roboto; font-size: 15px; line-height: 26px; color: rgb(68, 68, 68);\">Note:All fee related /other issues can be addressed between the given timings.</p>', '2023-02-12 10:04:05');
-- --------------------------------------------------------
--
-- Table structure for table `tblpage`
--
CREATE TABLE `tblpage` (
`ID` int(10) NOT NULL,
`PageType` varchar(200) DEFAULT NULL,
`PageTitle` mediumtext DEFAULT NULL,
`PageDescription` mediumtext DEFAULT NULL,
`Email` varchar(200) DEFAULT NULL,
`MobileNumber` bigint(10) DEFAULT NULL,
`UpdationDate` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tblpublicnotice`
--
CREATE TABLE `tblpublicnotice` (
`ID` int(5) NOT NULL,
`NoticeTitle` varchar(200) DEFAULT NULL,
`NoticeMessage` mediumtext DEFAULT NULL,
`CreationDate` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tblpublicnotice`
--
INSERT INTO `tblpublicnotice` (`ID`, `NoticeTitle`, `NoticeMessage`, `CreationDate`) VALUES
(1, 'water supply unviability ', '<b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif;\">municipal corporation has temporarily ceased the water supply due to some repair works.</b><br>', '2023-02-12 10:27:07');
-- --------------------------------------------------------
--
-- Table structure for table `tblstudent`
--
CREATE TABLE `tblstudent` (
`ID` int(10) NOT NULL,
`StudentName` varchar(200) DEFAULT NULL,
`StudentEmail` varchar(200) DEFAULT NULL,
`StudentClass` varchar(100) DEFAULT NULL,
`Gender` varchar(50) DEFAULT NULL,
`DOB` date DEFAULT NULL,
`StuID` varchar(200) DEFAULT NULL,
`FatherName` mediumtext DEFAULT NULL,
`MotherName` mediumtext DEFAULT NULL,
`ContactNumber` bigint(10) DEFAULT NULL,
`AltenateNumber` bigint(10) DEFAULT NULL,
`Address` mediumtext DEFAULT NULL,
`UserName` varchar(200) DEFAULT NULL,
`Password` varchar(200) DEFAULT NULL,
`Image` varchar(200) DEFAULT NULL,
`DateofAdmission` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tblstudent`
--
INSERT INTO `tblstudent` (`ID`, `StudentName`, `StudentEmail`, `StudentClass`, `Gender`, `DOB`, `StuID`, `FatherName`, `MotherName`, `ContactNumber`, `AltenateNumber`, `Address`, `UserName`, `Password`, `Image`, `DateofAdmission`) VALUES
(1, 'Raghav Jain', 'raghav@gmail.com', '1', 'Male', '2023-02-12', 'FSA-1001', 'Shantilal', 'Jiya', 9090909090, 8080808080, 'Cinemax Theater, nashik road ', 'raghav@gmail.com', '1b89744e90c7de7e76f25f281b924f44', '10c4a583ccb72d42c58230673f5923571676196769.jpg', '2023-02-12 10:12:49');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tbladmin`
--
ALTER TABLE `tbladmin`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `tblclass`
--
ALTER TABLE `tblclass`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `tblnotice`
--
ALTER TABLE `tblnotice`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `tblpage`
--
ALTER TABLE `tblpage`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `tblpublicnotice`
--
ALTER TABLE `tblpublicnotice`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `tblstudent`
--
ALTER TABLE `tblstudent`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tbladmin`
--
ALTER TABLE `tbladmin`
MODIFY `ID` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tblclass`
--
ALTER TABLE `tblclass`
MODIFY `ID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `tblnotice`
--
ALTER TABLE `tblnotice`
MODIFY `ID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tblpage`
--
ALTER TABLE `tblpage`
MODIFY `ID` int(10) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `tblpublicnotice`
--
ALTER TABLE `tblpublicnotice`
MODIFY `ID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tblstudent`
--
ALTER TABLE `tblstudent`
MODIFY `ID` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;