aboutsummaryrefslogtreecommitdiff
path: root/tables.sql
diff options
context:
space:
mode:
Diffstat (limited to 'tables.sql')
-rw-r--r--tables.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/tables.sql b/tables.sql
index a8201ab..e629f7a 100644
--- a/tables.sql
+++ b/tables.sql
@@ -9,6 +9,7 @@ CREATE TABLE IF NOT EXISTS theme(
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- TODO: Remove dropping
+DROP TABLE IF EXISTS quotes;
DROP TABLE IF EXISTS users;
DROP TABLE IF EXISTS types;
DROP TABLE IF EXISTS class;
@@ -38,6 +39,17 @@ CREATE TABLE IF NOT EXISTS users(
CONSTRAINT `fk_type_user` FOREIGN KEY (type_id) REFERENCES types (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+CREATE TABLE IF NOT EXISTS quotes(
+ id INTEGER PRIMARY KEY AUTO_INCREMENT,
+ user_id INTEGER NOT NULL, -- Person who heard it
+ author_id INTEGER NOT NULL, -- Person who said it
+ quote VARCHAR(255) NOT NULL,
+
+ UNIQUE KEY uk_quote (author_id, quote),
+ CONSTRAINT `fk_user_quote1` FOREIGN KEY (user_id) REFERENCES users (id),
+ CONSTRAINT `fk_user_quote2` FOREIGN KEY (author_id) REFERENCES users (id)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
INSERT INTO types VALUES (1, "teacher"), (2, "pupil");
INSERT INTO class VALUES
(1, "TGM13.1"),