diff options
author | Marvin Borner | 2020-07-18 15:54:13 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 15:54:13 +0200 |
commit | 47f66e980761ad1218f51c7f51e51dd550bf0b35 (patch) | |
tree | ac296348b105e750d8d142cad74f09a7afb29be0 /src/db/tables.sql | |
parent | 476715384f4a5d0b7d887961b43b7aa271c08495 (diff) |
Data, data, daaaaaaaaataaaaaaaaaaaa!
Diffstat (limited to 'src/db/tables.sql')
-rw-r--r-- | src/db/tables.sql | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/db/tables.sql b/src/db/tables.sql index 4523522..9883ea1 100644 --- a/src/db/tables.sql +++ b/src/db/tables.sql @@ -1,5 +1,19 @@ -DROP TABLE IF EXISTS test; +DROP TABLE IF EXISTS access; +DROP TABLE IF EXISTS users; -CREATE TABLE IF NOT EXISTS test ( - id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY +CREATE TABLE IF NOT EXISTS users ( + id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, + email VARCHAR(24) NOT NULL UNIQUE, + username VARCHAR(24) NOT NULL UNIQUE, + password VARCHAR(64) NOT NULL, + verification VARCHAR(64) NOT NULL UNIQUE, + dark_theme BOOLEAN NOT NULL DEFAULT true, + is_admin BOOLEAN NOT NULL DEFAULT false +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS access ( + id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, + uid INT(6) UNSIGNED, + path VARCHAR(64) NOT NULL, + FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; |