]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
curly braces + spaces added
[friendica.git] / database.sql
index f12746e7e53b5b598b99df84207f06dcf00dafee..c7ab893d722253fb1e6b36dbe28198c3ac5a3b42 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 3.5.1-dev (Asparagus)
--- DB_UPDATE_VERSION 1205
+-- Friendica 3.5.2-dev (Asparagus)
+-- DB_UPDATE_VERSION 1215
 -- ------------------------------------------
 
 
@@ -9,13 +9,14 @@
 --
 CREATE TABLE IF NOT EXISTS `addon` (
        `id` int(11) NOT NULL auto_increment,
-       `name` varchar(255) NOT NULL DEFAULT '',
+       `name` varchar(190) NOT NULL DEFAULT '',
        `version` varchar(255) NOT NULL DEFAULT '',
        `installed` tinyint(1) NOT NULL DEFAULT 0,
        `hidden` tinyint(1) NOT NULL DEFAULT 0,
        `timestamp` bigint(20) NOT NULL DEFAULT 0,
        `plugin_admin` tinyint(1) NOT NULL DEFAULT 0,
-        PRIMARY KEY(`id`)
+        PRIMARY KEY(`id`),
+        UNIQUE INDEX `name` (`name`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -54,12 +55,12 @@ CREATE TABLE IF NOT EXISTS `auth_codes` (
 -- TABLE cache
 --
 CREATE TABLE IF NOT EXISTS `cache` (
-       `k` varchar(255) NOT NULL,
-       `v` text,
+       `k` varbinary(255) NOT NULL,
+       `v` mediumtext,
        `expire_mode` int(11) NOT NULL DEFAULT 0,
        `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-        PRIMARY KEY(`k`(191)),
-        INDEX `updated` (`updated`)
+        PRIMARY KEY(`k`),
+        INDEX `expire_mode_updated` (`expire_mode`,`updated`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -93,11 +94,11 @@ CREATE TABLE IF NOT EXISTS `clients` (
 --
 CREATE TABLE IF NOT EXISTS `config` (
        `id` int(10) unsigned NOT NULL auto_increment,
-       `cat` varchar(255) NOT NULL DEFAULT '',
-       `k` varchar(255) NOT NULL DEFAULT '',
-       `v` text,
+       `cat` varbinary(255) NOT NULL DEFAULT '',
+       `k` varbinary(255) NOT NULL DEFAULT '',
+       `v` mediumtext,
         PRIMARY KEY(`id`),
-        UNIQUE INDEX `cat_k` (`cat`(30),`k`(30))
+        UNIQUE INDEX `cat_k` (`cat`,`k`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -171,10 +172,20 @@ CREATE TABLE IF NOT EXISTS `contact` (
        `bd` date NOT NULL DEFAULT '0000-00-00',
        `notify_new_posts` tinyint(1) NOT NULL DEFAULT 0,
        `fetch_further_information` tinyint(1) NOT NULL DEFAULT 0,
-       `ffi_keyword_blacklist` mediumtext,
+       `ffi_keyword_blacklist` text,
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`),
-        INDEX `nurl` (`nurl`)
+        INDEX `uid_name` (`uid`,`name`),
+        INDEX `self_uid` (`self`,`uid`),
+        INDEX `alias_uid` (`alias`(32),`uid`),
+        INDEX `pending_uid` (`pending`,`uid`),
+        INDEX `blocked_uid` (`blocked`,`uid`),
+        INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
+        INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
+        INDEX `addr_uid` (`addr`(32),`uid`),
+        INDEX `nurl_uid` (`nurl`(32),`uid`),
+        INDEX `nick_uid` (`nick`(32),`uid`),
+        INDEX `dfrn-id` (`dfrn-id`),
+        INDEX `issued-id` (`issued-id`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -183,32 +194,22 @@ CREATE TABLE IF NOT EXISTS `contact` (
 CREATE TABLE IF NOT EXISTS `conv` (
        `id` int(10) unsigned NOT NULL auto_increment,
        `guid` varchar(64) NOT NULL DEFAULT '',
-       `recips` mediumtext,
+       `recips` text,
        `uid` int(11) NOT NULL DEFAULT 0,
        `creator` varchar(255) NOT NULL DEFAULT '',
        `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
        `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `subject` mediumtext,
+       `subject` text,
         PRIMARY KEY(`id`),
         INDEX `uid` (`uid`)
 ) DEFAULT CHARSET=utf8mb4;
 
---
--- TABLE deliverq
---
-CREATE TABLE IF NOT EXISTS `deliverq` (
-       `id` int(10) unsigned NOT NULL auto_increment,
-       `cmd` varchar(32) NOT NULL DEFAULT '',
-       `item` int(11) NOT NULL DEFAULT 0,
-       `contact` int(11) NOT NULL DEFAULT 0,
-        PRIMARY KEY(`id`)
-) DEFAULT CHARSET=utf8mb4;
-
 --
 -- TABLE event
 --
 CREATE TABLE IF NOT EXISTS `event` (
        `id` int(11) NOT NULL auto_increment,
+       `guid` varchar(255) NOT NULL DEFAULT '',
        `uid` int(11) NOT NULL DEFAULT 0,
        `cid` int(11) NOT NULL DEFAULT 0,
        `uri` varchar(255) NOT NULL DEFAULT '',
@@ -228,7 +229,7 @@ CREATE TABLE IF NOT EXISTS `event` (
        `deny_cid` mediumtext,
        `deny_gid` mediumtext,
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`)
+        INDEX `uid_start` (`uid`,`start`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -253,7 +254,8 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
        `pubkey` text,
        `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
         PRIMARY KEY(`id`),
-        INDEX `addr` (`addr`)
+        INDEX `addr` (`addr`(32)),
+        INDEX `url` (`url`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -276,7 +278,7 @@ CREATE TABLE IF NOT EXISTS `fserver` (
        `posturl` varchar(255) NOT NULL DEFAULT '',
        `key` text,
         PRIMARY KEY(`id`),
-        INDEX `server` (`server`)
+        INDEX `server` (`server`(32))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -338,10 +340,11 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
        `generation` tinyint(3) NOT NULL DEFAULT 0,
        `server_url` varchar(255) NOT NULL DEFAULT '',
         PRIMARY KEY(`id`),
-        INDEX `nurl` (`nurl`),
-        INDEX `name` (`name`),
-        INDEX `nick` (`nick`),
-        INDEX `addr` (`addr`),
+        INDEX `nurl` (`nurl`(64)),
+        INDEX `name` (`name`(64)),
+        INDEX `nick` (`nick`(32)),
+        INDEX `addr` (`addr`(64)),
+        INDEX `hide_network_updated` (`hide`,`network`,`updated`),
         INDEX `updated` (`updated`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -356,9 +359,8 @@ CREATE TABLE IF NOT EXISTS `glink` (
        `zcid` int(11) NOT NULL DEFAULT 0,
        `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
         PRIMARY KEY(`id`),
-        INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
-        INDEX `gcid` (`gcid`),
-        INDEX `zcid` (`zcid`)
+        UNIQUE INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
+        INDEX `gcid` (`gcid`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -383,7 +385,9 @@ CREATE TABLE IF NOT EXISTS `group_member` (
        `gid` int(10) unsigned NOT NULL DEFAULT 0,
        `contact-id` int(10) unsigned NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`),
-        INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`)
+        INDEX `contactid` (`contact-id`),
+        INDEX `gid_contactid` (`gid`,`contact-id`),
+        UNIQUE INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -406,7 +410,7 @@ CREATE TABLE IF NOT EXISTS `gserver` (
        `last_contact` datetime DEFAULT '0000-00-00 00:00:00',
        `last_failure` datetime DEFAULT '0000-00-00 00:00:00',
         PRIMARY KEY(`id`),
-        INDEX `nurl` (`nurl`)
+        INDEX `nurl` (`nurl`(32))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -419,7 +423,7 @@ CREATE TABLE IF NOT EXISTS `hook` (
        `function` varchar(255) NOT NULL DEFAULT '',
        `priority` int(11) unsigned NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`),
-        INDEX `hook_file_function` (`hook`(30),`file`(60),`function`(30))
+        UNIQUE INDEX `hook_file_function` (`hook`(50),`file`(80),`function`(60))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -516,29 +520,18 @@ CREATE TABLE IF NOT EXISTS `item` (
         INDEX `parent-uri` (`parent-uri`),
         INDEX `extid` (`extid`),
         INDEX `uid_id` (`uid`,`id`),
+        INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
         INDEX `uid_created` (`uid`,`created`),
         INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
         INDEX `uid_network_received` (`uid`,`network`,`received`),
-        INDEX `uid_received` (`uid`,`received`),
         INDEX `uid_network_commented` (`uid`,`network`,`commented`),
-        INDEX `uid_commented` (`uid`,`commented`),
-        INDEX `uid_title` (`uid`,`title`),
         INDEX `uid_thrparent` (`uid`,`thr-parent`),
         INDEX `uid_parenturi` (`uid`,`parent-uri`),
-        INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
         INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
-        INDEX `gcontactid_uid_created` (`gcontact-id`,`uid`,`created`),
         INDEX `authorid_created` (`author-id`,`created`),
-        INDEX `ownerid_created` (`owner-id`,`created`),
-        INDEX `wall_body` (`wall`,`body`(6)),
-        INDEX `uid_visible_moderated_created` (`uid`,`visible`,`moderated`,`created`),
         INDEX `uid_uri` (`uid`,`uri`),
-        INDEX `uid_wall_created` (`uid`,`wall`,`created`),
         INDEX `resource-id` (`resource-id`),
-        INDEX `uid_type` (`uid`,`type`),
-        INDEX `uid_starred_id` (`uid`,`starred`,`id`),
         INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)),
-        INDEX `uid_wall_parent_created` (`uid`,`wall`,`parent`,`created`),
         INDEX `uid_type_changed` (`uid`,`type`,`changed`),
         INDEX `contactid_verb` (`contact-id`,`verb`),
         INDEX `deleted_changed` (`deleted`,`changed`),
@@ -560,7 +553,7 @@ CREATE TABLE IF NOT EXISTS `item_id` (
         PRIMARY KEY(`id`),
         INDEX `uid` (`uid`),
         INDEX `sid` (`sid`),
-        INDEX `service` (`service`),
+        INDEX `service` (`service`(32)),
         INDEX `iid` (`iid`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -597,12 +590,10 @@ CREATE TABLE IF NOT EXISTS `mail` (
        `parent-uri` varchar(255) NOT NULL DEFAULT '',
        `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`),
-        INDEX `guid` (`guid`),
+        INDEX `uid_seen` (`uid`,`seen`),
         INDEX `convid` (`convid`),
-        INDEX `reply` (`reply`),
-        INDEX `uri` (`uri`),
-        INDEX `parent-uri` (`parent-uri`)
+        INDEX `uri` (`uri`(64)),
+        INDEX `parent-uri` (`parent-uri`(64))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -633,7 +624,7 @@ CREATE TABLE IF NOT EXISTS `manage` (
        `uid` int(11) NOT NULL DEFAULT 0,
        `mid` int(11) NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`),
-        INDEX `uid_mid` (`uid`,`mid`)
+        UNIQUE INDEX `uid_mid` (`uid`,`mid`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -655,8 +646,13 @@ CREATE TABLE IF NOT EXISTS `notify` (
        `seen` tinyint(1) NOT NULL DEFAULT 0,
        `verb` varchar(255) NOT NULL DEFAULT '',
        `otype` varchar(16) NOT NULL DEFAULT '',
+       `name_cache` tinytext,
+       `msg_cache` mediumtext,
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`)
+        INDEX `hash_uid` (`hash`,`uid`),
+        INDEX `seen_uid_date` (`seen`,`uid`,`date`),
+        INDEX `uid_date` (`uid`,`date`),
+        INDEX `uid_type_link` (`uid`,`type`,`link`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -668,19 +664,17 @@ CREATE TABLE IF NOT EXISTS `notify-threads` (
        `master-parent-item` int(10) unsigned NOT NULL DEFAULT 0,
        `parent-item` int(10) unsigned NOT NULL DEFAULT 0,
        `receiver-uid` int(11) NOT NULL DEFAULT 0,
-        PRIMARY KEY(`id`),
-        INDEX `master-parent-item` (`master-parent-item`),
-        INDEX `receiver-uid` (`receiver-uid`)
+        PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
 -- TABLE oembed
 --
 CREATE TABLE IF NOT EXISTS `oembed` (
-       `url` varchar(255) NOT NULL,
-       `content` text,
+       `url` varbinary(255) NOT NULL,
+       `content` mediumtext,
        `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-        PRIMARY KEY(`url`(191)),
+        PRIMARY KEY(`url`),
         INDEX `created` (`created`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -688,12 +682,12 @@ CREATE TABLE IF NOT EXISTS `oembed` (
 -- TABLE parsed_url
 --
 CREATE TABLE IF NOT EXISTS `parsed_url` (
-       `url` varchar(255) NOT NULL,
+       `url` varbinary(255) NOT NULL,
        `guessing` tinyint(1) NOT NULL DEFAULT 0,
        `oembed` tinyint(1) NOT NULL DEFAULT 0,
-       `content` text,
+       `content` mediumtext,
        `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-        PRIMARY KEY(`url`(191),`guessing`,`oembed`),
+        PRIMARY KEY(`url`,`guessing`,`oembed`),
         INDEX `created` (`created`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -703,11 +697,11 @@ CREATE TABLE IF NOT EXISTS `parsed_url` (
 CREATE TABLE IF NOT EXISTS `pconfig` (
        `id` int(11) NOT NULL auto_increment,
        `uid` int(11) NOT NULL DEFAULT 0,
-       `cat` varchar(255) NOT NULL DEFAULT '',
-       `k` varchar(255) NOT NULL DEFAULT '',
+       `cat` varbinary(255) NOT NULL DEFAULT '',
+       `k` varbinary(255) NOT NULL DEFAULT '',
        `v` mediumtext,
         PRIMARY KEY(`id`),
-        UNIQUE INDEX `uid_cat_k` (`uid`,`cat`(30),`k`(30))
+        UNIQUE INDEX `uid_cat_k` (`uid`,`cat`,`k`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -737,9 +731,11 @@ CREATE TABLE IF NOT EXISTS `photo` (
        `deny_cid` mediumtext,
        `deny_gid` mediumtext,
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`),
-        INDEX `resource-id` (`resource-id`),
-        INDEX `guid` (`guid`)
+        INDEX `uid_contactid` (`uid`,`contact-id`),
+        INDEX `uid_profile` (`uid`,`profile`),
+        INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
+        INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`(64),`created`),
+        INDEX `resource-id` (`resource-id`(64))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -748,16 +744,16 @@ CREATE TABLE IF NOT EXISTS `photo` (
 CREATE TABLE IF NOT EXISTS `poll` (
        `id` int(11) NOT NULL auto_increment,
        `uid` int(11) NOT NULL DEFAULT 0,
-       `q0` mediumtext,
-       `q1` mediumtext,
-       `q2` mediumtext,
-       `q3` mediumtext,
-       `q4` mediumtext,
-       `q5` mediumtext,
-       `q6` mediumtext,
-       `q7` mediumtext,
-       `q8` mediumtext,
-       `q9` mediumtext,
+       `q0` text,
+       `q1` text,
+       `q2` text,
+       `q3` text,
+       `q4` text,
+       `q5` text,
+       `q6` text,
+       `q7` text,
+       `q8` text,
+       `q9` text,
         PRIMARY KEY(`id`),
         INDEX `uid` (`uid`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -779,7 +775,7 @@ CREATE TABLE IF NOT EXISTS `poll_result` (
 --
 CREATE TABLE IF NOT EXISTS `process` (
        `pid` int(10) unsigned NOT NULL,
-       `command` varchar(32) NOT NULL DEFAULT '',
+       `command` varbinary(32) NOT NULL DEFAULT '',
        `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
         PRIMARY KEY(`pid`),
         INDEX `command` (`command`)
@@ -832,7 +828,7 @@ CREATE TABLE IF NOT EXISTS `profile` (
        `publish` tinyint(1) NOT NULL DEFAULT 0,
        `net-publish` tinyint(1) NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`),
-        INDEX `hometown` (`hometown`)
+        INDEX `uid_is-default` (`uid`,`is-default`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -892,6 +888,7 @@ CREATE TABLE IF NOT EXISTS `register` (
        `uid` int(11) unsigned NOT NULL DEFAULT 0,
        `password` varchar(255) NOT NULL DEFAULT '',
        `language` varchar(16) NOT NULL DEFAULT '',
+       `note` text,
         PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -903,8 +900,7 @@ CREATE TABLE IF NOT EXISTS `search` (
        `uid` int(11) NOT NULL DEFAULT 0,
        `term` varchar(255) NOT NULL DEFAULT '',
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`),
-        INDEX `term` (`term`)
+        INDEX `uid` (`uid`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -912,11 +908,11 @@ CREATE TABLE IF NOT EXISTS `search` (
 --
 CREATE TABLE IF NOT EXISTS `session` (
        `id` bigint(20) unsigned NOT NULL auto_increment,
-       `sid` varchar(255) NOT NULL DEFAULT '',
+       `sid` varbinary(255) NOT NULL DEFAULT '',
        `data` text,
        `expire` int(10) unsigned NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`),
-        INDEX `sid` (`sid`),
+        INDEX `sid` (`sid`(64)),
         INDEX `expire` (`expire`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -968,11 +964,9 @@ CREATE TABLE IF NOT EXISTS `term` (
        `uid` int(10) unsigned NOT NULL DEFAULT 0,
         PRIMARY KEY(`tid`),
         INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`),
-        INDEX `uid_term_tid` (`uid`,`term`,`tid`),
-        INDEX `type_term` (`type`,`term`),
-        INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`,`global`,`created`),
-        INDEX `otype_type_term_tid` (`otype`,`type`,`term`,`tid`),
-        INDEX `guid` (`guid`)
+        INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
+        INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`(64)),
+        INDEX `guid` (`guid`(64))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -1006,17 +1000,13 @@ CREATE TABLE IF NOT EXISTS `thread` (
        `mention` tinyint(1) NOT NULL DEFAULT 0,
        `network` varchar(32) NOT NULL DEFAULT '',
         PRIMARY KEY(`iid`),
-        INDEX `created` (`created`),
-        INDEX `commented` (`commented`),
         INDEX `uid_network_commented` (`uid`,`network`,`commented`),
         INDEX `uid_network_created` (`uid`,`network`,`created`),
         INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
         INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
-        INDEX `uid_gcontactid_commented` (`uid`,`gcontact-id`,`commented`),
-        INDEX `uid_gcontactid_created` (`uid`,`gcontact-id`,`created`),
-        INDEX `wall_private_received` (`wall`,`private`,`received`),
         INDEX `uid_created` (`uid`,`created`),
-        INDEX `uid_commented` (`uid`,`commented`)
+        INDEX `uid_commented` (`uid`,`commented`),
+        INDEX `uid_wall_created` (`uid`,`wall`,`created`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -1080,7 +1070,7 @@ CREATE TABLE IF NOT EXISTS `user` (
        `deny_gid` mediumtext,
        `openidserver` text,
         PRIMARY KEY(`uid`),
-        INDEX `nickname` (`nickname`)
+        INDEX `nickname` (`nickname`(32))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -1090,7 +1080,7 @@ CREATE TABLE IF NOT EXISTS `userd` (
        `id` int(11) NOT NULL auto_increment,
        `username` varchar(255) NOT NULL,
         PRIMARY KEY(`id`),
-        INDEX `username` (`username`)
+        INDEX `username` (`username`(32))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -1103,7 +1093,6 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
        `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
        `pid` int(11) NOT NULL DEFAULT 0,
        `executed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-        PRIMARY KEY(`id`),
-        INDEX `created` (`created`)
+        PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;