aboutsummaryrefslogtreecommitdiff
path: root/tables.sql
diff options
context:
space:
mode:
authorMarvin Borner2020-09-30 21:01:13 +0200
committerMarvin Borner2020-09-30 21:01:13 +0200
commit3491013c43775401b5e87f97c09d906de5bafbc9 (patch)
tree7b89937837aa74360d2b06ce5cb1a4684abf927a /tables.sql
parent5273769235456e69f6dbde60a63a5a9a7f2ee345 (diff)
Lars is dumb
Diffstat (limited to 'tables.sql')
-rw-r--r--tables.sql12
1 files changed, 8 insertions, 4 deletions
diff --git a/tables.sql b/tables.sql
index a90c8a9..7cd7268 100644
--- a/tables.sql
+++ b/tables.sql
@@ -1,7 +1,11 @@
+set global innodb_large_prefix = ON;
+
CREATE TABLE IF NOT EXISTS theme(
id INTEGER PRIMARY KEY AUTO_INCREMENT,
- main TEXT NOT NULL UNIQUE,
- description TEXT NOT NULL UNIQUE,
+ main VARCHAR(255) NOT NULL,
+ description VARCHAR(255) NOT NULL,
votes INTEGER DEFAULT FALSE,
- hidden BOOLEAN DEFAULT FALSE
-);
+ hidden BOOLEAN DEFAULT FALSE,
+
+ UNIQUE KEY main (main, description)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;