aboutsummaryrefslogtreecommitdiff
path: root/tables.sql
diff options
context:
space:
mode:
authorLarsVomMars2020-10-02 13:37:10 +0200
committerLarsVomMars2020-10-02 13:37:14 +0200
commit6f0b965f3a1a14a959c1cde7fa2a31fb7beaf03f (patch)
tree940a1af1825d200d7092b3312c904d49401f336a /tables.sql
parente20b64cddc77cf07a9f2b0c27ce12ca21e61d1f3 (diff)
Move to js initValues
Diffstat (limited to 'tables.sql')
-rw-r--r--tables.sql16
1 files changed, 4 insertions, 12 deletions
diff --git a/tables.sql b/tables.sql
index e629f7a..8948860 100644
--- a/tables.sql
+++ b/tables.sql
@@ -9,10 +9,10 @@ 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;
+-- DROP TABLE IF EXISTS quotes;
+-- DROP TABLE IF EXISTS users;
+-- DROP TABLE IF EXISTS types;
+-- DROP TABLE IF EXISTS class;
CREATE TABLE IF NOT EXISTS types(
id INTEGER PRIMARY KEY AUTO_INCREMENT,
@@ -49,11 +49,3 @@ CREATE TABLE IF NOT EXISTS quotes(
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"),
- (2, "TGM13.2"),
- (3, "TGTM13.1"),
- (4, "TGI13.1"),
- (5, "TGI13.2");