-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.sql
146 lines (118 loc) · 3.6 KB
/
test.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
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 12, 2024 at 10:44 AM
-- Server version: 10.4.32-MariaDB
-- PHP Version: 8.0.30
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: `test`
--
-- --------------------------------------------------------
--
-- Table structure for table `administration`
--
CREATE TABLE `administration` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`UserID` int
(11) NOT NfinalULL,
`Salary` decimal(10,2) DEFAULT NULL,
`EmploymentType` enum('full-time','part-time') DEFAULT NULL,
`WorkingHours` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- --------------------------------------------------------
--
-- Table structure for table `students`
--
CREATE TABLE `students` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`UserID` int(11) NOT NULL,
`CurrentSubject1` varchar(255) DEFAULT NULL,
`CurrentSubject2` varchar(255) DEFAULT NULL,
`PreviousSubject1` varchar(255) DEFAULT NULL,
`PreviousSubject2` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- --------------------------------------------------------
--
-- Table structure for table `teachingstaff`
--
CREATE TABLE `teachingstaff` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`UserID` int(11) NOT NULL,
`Salary` decimal(10,2) DEFAULT NULL,
`subject1` varchar(100) DEFAULT NULL,
`subject2` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`UserID` int(11) NOT NULL,
`Name` varchar(255) DEFAULT NULL,
`Telephone` varchar(15) DEFAULT NULL,
`Email` varchar(255) DEFAULT NULL,
`Role` enum('teacher','admin','student') DEFAULT NULL,
`ProfilePicture` longblob DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `administration`
--
ALTER TABLE `administration`
ADD PRIMARY KEY (`UserID`);
--
-- Indexes for table `students`
--
ALTER TABLE `students`
ADD PRIMARY KEY (`UserID`);
--
-- Indexes for table `teachingstaff`
--
ALTER TABLE `teachingstaff`
ADD PRIMARY KEY (`UserID`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`UserID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `UserID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `administration`
--
ALTER TABLE `administration`
ADD CONSTRAINT `administration_ibfk_1` FOREIGN KEY (`UserID`) REFERENCES `users` (`UserID`) ON DELETE CASCADE;
--
-- Constraints for table `students`
--
ALTER TABLE `students`
ADD CONSTRAINT `students_ibfk_1` FOREIGN KEY (`UserID`) REFERENCES `users` (`UserID`) ON DELETE CASCADE;
--
-- Constraints for table `teachingstaff`
--
ALTER TABLE `teachingstaff`
ADD CONSTRAINT `teachingstaff_ibfk_1` FOREIGN KEY (`UserID`) REFERENCES `users` (`UserID`) ON DELETE CASCADE;
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 */;