-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCREATE.sql
More file actions
54 lines (54 loc) · 1.74 KB
/
CREATE.sql
File metadata and controls
54 lines (54 loc) · 1.74 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
CREATE TABLE Profiles(
id BIGINT unsigned NOT NULL AUTO_INCREMENT,
email VARCHAR(45) NOT NULL UNIQUE,
password VARCHAR(60) NOT NULL,
ip INT(4) unsigned NOT NULL,
token VARCHAR(45) UNIQUE,
regstamp TIMESTAMP NOT NULL DEFAULT now(),
confstamp TIMESTAMP NULL DEFAULT NULL,
role ENUM('admin', 'trainer', 'attendee') NOT NULL,
active INT(11) DEFAULT NULL,
PRIMARY KEY (id)
);
CREATE TABLE Attendees(
id BIGINT unsigned NOT NULL AUTO_INCREMENT,
idprof BIGINT unsigned NOT NULL UNIQUE,
name VARCHAR(60) NOT NULL,
surname VARCHAR(60) NOT NULL,
phone VARCHAR(20) NOT NULL UNIQUE,
city VARCHAR(30) NOT NULL,
postcode VARCHAR(10),
street VARCHAR(60) NOT NULL,
PRIMARY KEY(id),
FOREIGN KEY (idprof) REFERENCES Profiles(id) ON DELETE CASCADE
);
CREATE TABLE Courses(
id BIGINT unsigned NOT NULL AUTO_INCREMENT,
title VARCHAR(60) NOT NULL,
start_date TIMESTAMP NOT NULL,
end_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
description TEXT,
max_attende SMALLINT,
PRIMARY KEY(id)
);
CREATE TABLE Workplaces
(
id BIGINT unsigned NOT NULL AUTO_INCREMENT,
name VARCHAR(60),
city VARCHAR(30) NOT NULL,
street VARCHAR(60) NOT NULL,
floor SMALLINT(2),
room SMALLINT(3),
PRIMARY KEY (id)
);
CREATE TABLE Subscriptions (
id BIGINT unsigned NOT NULL AUTO_INCREMENT,
idcour BIGINT unsigned NOT NULL,
idworkpl BIGINT unsigned NOT NULL,
idattend BIGINT unsigned NOT NULL,
regstamp TIMESTAMP NOT NULL DEFAULT now(),
PRIMARY KEY (id),
FOREIGN KEY (idcour) REFERENCES Courses(id) ON DELETE CASCADE,
FOREIGN KEY (idworkpl) REFERENCES Workplaces (id) ON DELETE CASCADE,
FOREIGN KEY (idattend) REFERENCES Attendees(id) ON DELETE CASCADE
);