-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpta.sql
More file actions
executable file
·88 lines (70 loc) · 2.09 KB
/
Copy pathpta.sql
File metadata and controls
executable file
·88 lines (70 loc) · 2.09 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
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 16, 2018 at 06:32 PM
-- Server version: 5.7.14
-- PHP Version: 5.6.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `pta`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`admname` varchar(100) NOT NULL,
`email` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`role` varchar(20) NOT NULL,
`dept` varchar(10) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`admname`, `email`, `password`, `role`, `dept`) VALUES
('tutorname', 'demo@gmail.com', 'asdf', 'tutor', NULL),
('Admin', 'admin1@gmail.com', 'asdf', 'admin', NULL),
('tutor1', 'tutor1@gmail.com', 'asdf', 'tutor', NULL),
('HOD1', 'hod1@gmail.com', 'asdf', 'hod', 'CSE'),
('HOD2', 'hod2@gmail.com', 'asdf', 'hod', 'EEE');
-- --------------------------------------------------------
--
-- Table structure for table `student`
--
CREATE TABLE `student` (
`reg` varchar(15) NOT NULL,
`name` varchar(100) NOT NULL,
`dob` date NOT NULL,
`tutor` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `student`
--
INSERT INTO `student` (`reg`, `name`, `dob`, `tutor`) VALUES
('1111', 'studentname', '2018-03-01', 'tutorname');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`admname`);
--
-- Indexes for table `student`
--
ALTER TABLE `student`
ADD PRIMARY KEY (`reg`),
ADD KEY `tutor` (`tutor`),
ADD KEY `tutor_2` (`tutor`);
/*!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 */;