-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstudentHelper.sql
More file actions
135 lines (107 loc) · 3.02 KB
/
Copy pathstudentHelper.sql
File metadata and controls
135 lines (107 loc) · 3.02 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
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 27, 2017 at 10:33 AM
-- Server version: 10.1.21-MariaDB
-- PHP Version: 7.1.1
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: `studenthelper`
--
create database studenthelper;
use studenthelper;
-- --------------------------------------------------------
--
-- Table structure for table `instudygroup`
--
CREATE TABLE `instudygroup` (
`joinID` int(11) NOT NULL,
`user_FK` int(11) NOT NULL,
`studyGroup_FK` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `room`
--
CREATE TABLE `room` (
`roomID` int(11) NOT NULL,
`buildingName` varchar(255) NOT NULL,
`roomName` varchar(255) NOT NULL,
`maxStudents` int(11) NOT NULL,
`projector` varchar(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `dropOff`
--
CREATE TABLE `dropOff` (
`dropID` int(11) NOT NULL,
`buildingName` varchar(255) NOT NULL,
`roomName` varchar(255) NOT NULL,
`dateAndTime` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `studygroup`
--
CREATE TABLE `studygroup` (
`studyID` int(11) NOT NULL,
`studyName` varchar(255) NOT NULL,
`subject` varchar(255) NOT NULL,
`room` varchar(255) NOT NULL,
`projector` varchar(3) NOT NULL,
`date` varchar(255) NOT NULL,
`time` time NOT NULL,
`studyGroupMaxStudents` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`ID` int(11) NOT NULL,
`Email` varchar(255) NOT NULL,
`Password` varchar(255) NOT NULL,
`userType` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`ID`, `Email`, `Password`, `userType`) VALUES
(1, 'lect@test.com', 'password', 'lect'),
(2, 'stud@test.com', 'password', 'stud');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `instudygroup`
--
ALTER TABLE `instudygroup`
ADD PRIMARY KEY (`joinID`),
ADD UNIQUE KEY `joinID` (`joinID`),
ADD UNIQUE KEY `joinID_2` (`joinID`),
ADD KEY `user_FK` (`user_FK`,`studyGroup_FK`),
ADD KEY `studyGroup` (`studyGroup_FK`);
--
-- Indexes for table `room`
--
ALTER TABLE `room`
ADD PRIMARY KEY (`roomID`);
--
-- Indexes for table `dropOff`
--
ALTER TABLE `dropOff`
ADD PRIMARY KEY (`dropID`);
--
-- Indexes for table `studygroup`
--
ALTER TABLE `studygroup`
ADD PRIMARY KEY (`studyID`),
ADD KEY `studyID` (`studyID`);