aboutsummaryrefslogtreecommitdiff
path: root/tables.sql
diff options
context:
space:
mode:
authorLarsVomMars2021-01-28 12:53:19 +0100
committerLarsVomMars2021-01-28 15:25:53 +0100
commit2eff2deb98280aa61241e06163c87155911bbfae (patch)
tree92d2219abcb303fcade5649a6755e97ce5b51f26 /tables.sql
parent5feb9b1af9f6ff5b2e08bf9c7cc85ffc0f313945 (diff)
TEACHER PREDICTION HAHAHA
Diffstat (limited to 'tables.sql')
-rw-r--r--tables.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/tables.sql b/tables.sql
index 99dcf20..5678eae 100644
--- a/tables.sql
+++ b/tables.sql
@@ -176,3 +176,14 @@ CREATE TABLE IF NOT EXISTS profile_char
CONSTRAINT `fk_char_user2` FOREIGN KEY (user_id) REFERENCES users (id)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8;
+
+CREATE TABLE IF NOT EXISTS teacher_prediction
+(
+ id INTEGER PRIMARY KEY AUTO_INCREMENT,
+ user_id INTEGER NOT NULL UNIQUE,
+ teacher_id INTEGER NOT NULL,
+
+ CONSTRAINT `fk_teacher_user` FOREIGN KEY (user_id) REFERENCES users (id),
+ CONSTRAINT `fk_teacher_teacher` FOREIGN KEY (teacher_id) REFERENCES users (id)
+) ENGINE = InnoDB
+ DEFAULT CHARSET = utf8; \ No newline at end of file