]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
Allow negative contact.contat-type
[friendica.git] / database.sql
index 7cbe4858a803061c14127776409672b67c844454..9d56957100497f41efbf465dc7db10cac4e55bf2 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 3.5.1-dev (Asparagus)
--- DB_UPDATE_VERSION 1208
+-- 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;
 
 --
@@ -29,8 +30,8 @@ CREATE TABLE IF NOT EXISTS `attach` (
        `filetype` varchar(64) NOT NULL DEFAULT '',
        `filesize` int(11) NOT NULL DEFAULT 0,
        `data` longblob NOT NULL,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `allow_cid` mediumtext,
        `allow_gid` mediumtext,
        `deny_cid` mediumtext,
@@ -54,12 +55,11 @@ 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`),
+       `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+        PRIMARY KEY(`k`),
         INDEX `expire_mode_updated` (`expire_mode`,`updated`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -94,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;
 
 --
@@ -107,7 +107,7 @@ CREATE TABLE IF NOT EXISTS `config` (
 CREATE TABLE IF NOT EXISTS `contact` (
        `id` int(11) NOT NULL auto_increment,
        `uid` int(11) NOT NULL DEFAULT 0,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `self` tinyint(1) NOT NULL DEFAULT 0,
        `remote_self` tinyint(1) NOT NULL DEFAULT 0,
        `rel` tinyint(1) NOT NULL DEFAULT 0,
@@ -145,21 +145,21 @@ CREATE TABLE IF NOT EXISTS `contact` (
        `usehub` tinyint(1) NOT NULL DEFAULT 0,
        `subhub` tinyint(1) NOT NULL DEFAULT 0,
        `hub-verify` varchar(255) NOT NULL DEFAULT '',
-       `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `failure_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `last-item` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `failure_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `priority` tinyint(3) NOT NULL DEFAULT 0,
        `blocked` tinyint(1) NOT NULL DEFAULT 1,
        `readonly` tinyint(1) NOT NULL DEFAULT 0,
        `writable` tinyint(1) NOT NULL DEFAULT 0,
        `forum` tinyint(1) NOT NULL DEFAULT 0,
        `prv` tinyint(1) NOT NULL DEFAULT 0,
-       `contact-type` int(11) unsigned NOT NULL DEFAULT 0,
+       `contact-type` int(11) NOT NULL DEFAULT 0,
        `hidden` tinyint(1) NOT NULL DEFAULT 0,
        `archive` tinyint(1) NOT NULL DEFAULT 0,
        `pending` tinyint(1) NOT NULL DEFAULT 1,
@@ -172,11 +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 `addr_uid` (`addr`,`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;
 
 --
@@ -185,40 +194,29 @@ 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,
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `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`),
-        UNIQUE INDEX `cmd_item_contact` (`cmd`,`item`,`contact`)
-) 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 '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `finish` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `start` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `finish` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `summary` text,
        `desc` text,
        `location` text,
@@ -231,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;
 
 --
@@ -254,9 +252,10 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
        `network` varchar(32) NOT NULL DEFAULT '',
        `alias` varchar(255) NOT NULL DEFAULT '',
        `pubkey` text,
-       `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`id`),
-        INDEX `addr` (`addr`)
+        INDEX `addr` (`addr`(32)),
+        INDEX `url` (`url`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -279,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;
 
 --
@@ -294,7 +293,7 @@ CREATE TABLE IF NOT EXISTS `fsuggest` (
        `request` varchar(255) NOT NULL DEFAULT '',
        `photo` varchar(255) NOT NULL DEFAULT '',
        `note` text,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -321,10 +320,10 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
        `nurl` varchar(255) NOT NULL DEFAULT '',
        `photo` varchar(255) NOT NULL DEFAULT '',
        `connect` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `updated` datetime DEFAULT '0000-00-00 00:00:00',
-       `last_contact` datetime DEFAULT '0000-00-00 00:00:00',
-       `last_failure` datetime DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `updated` datetime DEFAULT '0001-01-01 00:00:00',
+       `last_contact` datetime DEFAULT '0001-01-01 00:00:00',
+       `last_failure` datetime DEFAULT '0001-01-01 00:00:00',
        `location` varchar(255) NOT NULL DEFAULT '',
        `about` text,
        `keywords` text,
@@ -341,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;
 
@@ -357,11 +357,10 @@ CREATE TABLE IF NOT EXISTS `glink` (
        `uid` int(11) NOT NULL DEFAULT 0,
        `gcid` int(11) NOT NULL DEFAULT 0,
        `zcid` int(11) NOT NULL DEFAULT 0,
-       `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `updated` datetime NOT NULL DEFAULT '0001-01-01 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;
 
 --
@@ -386,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;
 
 --
@@ -404,12 +405,12 @@ CREATE TABLE IF NOT EXISTS `gserver` (
        `noscrape` varchar(255) NOT NULL DEFAULT '',
        `network` varchar(32) NOT NULL DEFAULT '',
        `platform` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `last_poco_query` datetime DEFAULT '0000-00-00 00:00:00',
-       `last_contact` datetime DEFAULT '0000-00-00 00:00:00',
-       `last_failure` datetime DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `last_poco_query` datetime DEFAULT '0001-01-01 00:00:00',
+       `last_contact` datetime DEFAULT '0001-01-01 00:00:00',
+       `last_failure` datetime DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`id`),
-        INDEX `nurl` (`nurl`)
+        INDEX `nurl` (`nurl`(32))
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -422,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;
 
 --
@@ -437,7 +438,7 @@ CREATE TABLE IF NOT EXISTS `intro` (
        `duplex` tinyint(1) NOT NULL DEFAULT 0,
        `note` text,
        `hash` varchar(255) NOT NULL DEFAULT '',
-       `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `datetime` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `blocked` tinyint(1) NOT NULL DEFAULT 1,
        `ignore` tinyint(1) NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`)
@@ -460,11 +461,11 @@ CREATE TABLE IF NOT EXISTS `item` (
        `parent-uri` varchar(255) NOT NULL DEFAULT '',
        `extid` varchar(255) NOT NULL DEFAULT '',
        `thr-parent` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `owner-id` int(11) NOT NULL DEFAULT 0,
        `owner-name` varchar(255) NOT NULL DEFAULT '',
        `owner-link` varchar(255) NOT NULL DEFAULT '',
@@ -519,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`),
@@ -563,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;
 
@@ -574,7 +564,7 @@ CREATE TABLE IF NOT EXISTS `locks` (
        `id` int(11) NOT NULL auto_increment,
        `name` varchar(128) NOT NULL DEFAULT '',
        `locked` tinyint(1) NOT NULL DEFAULT 0,
-       `created` datetime DEFAULT '0000-00-00 00:00:00',
+       `created` datetime DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -598,14 +588,12 @@ CREATE TABLE IF NOT EXISTS `mail` (
        `unknown` tinyint(1) NOT NULL DEFAULT 0,
        `uri` varchar(255) NOT NULL DEFAULT '',
        `parent-uri` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 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;
 
 --
@@ -624,7 +612,7 @@ CREATE TABLE IF NOT EXISTS `mailacct` (
        `action` int(11) NOT NULL DEFAULT 0,
        `movetofolder` varchar(255) NOT NULL DEFAULT '',
        `pubmail` tinyint(1) NOT NULL DEFAULT 0,
-       `last_check` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -636,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;
 
 --
@@ -649,7 +637,7 @@ CREATE TABLE IF NOT EXISTS `notify` (
        `name` varchar(255) NOT NULL DEFAULT '',
        `url` varchar(255) NOT NULL DEFAULT '',
        `photo` varchar(255) NOT NULL DEFAULT '',
-       `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `msg` mediumtext,
        `uid` int(11) NOT NULL DEFAULT 0,
        `link` varchar(255) NOT NULL DEFAULT '',
@@ -661,7 +649,10 @@ CREATE TABLE IF NOT EXISTS `notify` (
        `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;
 
 --
@@ -673,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,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-        PRIMARY KEY(`url`(191)),
+       `url` varbinary(255) NOT NULL,
+       `content` mediumtext,
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+        PRIMARY KEY(`url`),
         INDEX `created` (`created`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -693,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,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-        PRIMARY KEY(`url`(191),`guessing`,`oembed`),
+       `content` mediumtext,
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+        PRIMARY KEY(`url`,`guessing`,`oembed`),
         INDEX `created` (`created`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -708,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;
 
 --
@@ -724,8 +713,8 @@ CREATE TABLE IF NOT EXISTS `photo` (
        `contact-id` int(10) unsigned NOT NULL DEFAULT 0,
        `guid` varchar(64) NOT NULL DEFAULT '',
        `resource-id` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `title` varchar(255) NOT NULL DEFAULT '',
        `desc` text,
        `album` varchar(255) NOT NULL DEFAULT '',
@@ -744,9 +733,9 @@ CREATE TABLE IF NOT EXISTS `photo` (
         PRIMARY KEY(`id`),
         INDEX `uid_contactid` (`uid`,`contact-id`),
         INDEX `uid_profile` (`uid`,`profile`),
-        INDEX `uid_album_created` (`uid`,`album`,`created`),
-        INDEX `resource-id` (`resource-id`),
-        INDEX `guid` (`guid`)
+        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;
 
 --
@@ -755,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;
@@ -786,8 +775,8 @@ 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 '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `command` varbinary(32) NOT NULL DEFAULT '',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`pid`),
         INDEX `command` (`command`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -813,7 +802,7 @@ CREATE TABLE IF NOT EXISTS `profile` (
        `gender` varchar(32) NOT NULL DEFAULT '',
        `marital` varchar(255) NOT NULL DEFAULT '',
        `with` text,
-       `howlong` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `howlong` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `sexual` varchar(255) NOT NULL DEFAULT '',
        `politic` varchar(255) NOT NULL DEFAULT '',
        `religion` varchar(255) NOT NULL DEFAULT '',
@@ -839,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;
 
 --
@@ -865,7 +854,7 @@ CREATE TABLE IF NOT EXISTS `push_subscriber` (
        `topic` varchar(255) NOT NULL DEFAULT '',
        `nickname` varchar(255) NOT NULL DEFAULT '',
        `push` int(11) NOT NULL DEFAULT 0,
-       `last_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `secret` varchar(255) NOT NULL DEFAULT '',
         PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -877,8 +866,8 @@ CREATE TABLE IF NOT EXISTS `queue` (
        `id` int(11) NOT NULL auto_increment,
        `cid` int(11) NOT NULL DEFAULT 0,
        `network` varchar(32) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `content` mediumtext,
        `batch` tinyint(1) NOT NULL DEFAULT 0,
         PRIMARY KEY(`id`),
@@ -895,7 +884,7 @@ CREATE TABLE IF NOT EXISTS `queue` (
 CREATE TABLE IF NOT EXISTS `register` (
        `id` int(11) unsigned NOT NULL auto_increment,
        `hash` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `uid` int(11) unsigned NOT NULL DEFAULT 0,
        `password` varchar(255) NOT NULL DEFAULT '',
        `language` varchar(16) NOT NULL DEFAULT '',
@@ -911,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;
 
 --
@@ -920,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;
 
@@ -950,7 +938,7 @@ CREATE TABLE IF NOT EXISTS `spam` (
        `spam` int(11) NOT NULL DEFAULT 0,
        `ham` int(11) NOT NULL DEFAULT 0,
        `term` varchar(255) NOT NULL DEFAULT '',
-       `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
         PRIMARY KEY(`id`),
         INDEX `uid` (`uid`),
         INDEX `spam` (`spam`),
@@ -969,19 +957,16 @@ CREATE TABLE IF NOT EXISTS `term` (
        `term` varchar(255) NOT NULL DEFAULT '',
        `url` varchar(255) NOT NULL DEFAULT '',
        `guid` varchar(255) NOT NULL DEFAULT '',
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `global` tinyint(1) NOT NULL DEFAULT 0,
        `aid` int(10) unsigned NOT NULL DEFAULT 0,
        `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 `uid_otype_type_url` (`uid`,`otype`,`type`,`url`),
-        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;
 
 --
@@ -994,11 +979,11 @@ CREATE TABLE IF NOT EXISTS `thread` (
        `gcontact-id` int(11) unsigned NOT NULL DEFAULT 0,
        `owner-id` int(11) unsigned NOT NULL DEFAULT 0,
        `author-id` int(11) unsigned NOT NULL DEFAULT 0,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `wall` tinyint(1) NOT NULL DEFAULT 0,
        `private` tinyint(1) NOT NULL DEFAULT 0,
        `pubmail` tinyint(1) NOT NULL DEFAULT 0,
@@ -1015,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;
 
 --
@@ -1054,8 +1035,8 @@ CREATE TABLE IF NOT EXISTS `user` (
        `openid` varchar(255) NOT NULL DEFAULT '',
        `timezone` varchar(128) NOT NULL DEFAULT '',
        `language` varchar(32) NOT NULL DEFAULT 'en',
-       `register_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `default-location` varchar(255) NOT NULL DEFAULT '',
        `allow_location` tinyint(1) NOT NULL DEFAULT 0,
        `theme` varchar(255) NOT NULL DEFAULT '',
@@ -1079,8 +1060,8 @@ CREATE TABLE IF NOT EXISTS `user` (
        `expire` int(11) unsigned NOT NULL DEFAULT 0,
        `account_removed` tinyint(1) NOT NULL DEFAULT 0,
        `account_expired` tinyint(1) NOT NULL DEFAULT 0,
-       `account_expires_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
-       `expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+       `expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
        `service_class` varchar(32) NOT NULL DEFAULT '',
        `def_gid` int(11) NOT NULL DEFAULT 0,
        `allow_cid` mediumtext,
@@ -1089,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;
 
 --
@@ -1099,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;
 
 --
@@ -1109,10 +1090,9 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
        `id` int(11) NOT NULL auto_increment,
        `parameter` text,
        `priority` tinyint(3) unsigned NOT NULL DEFAULT 0,
-       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `created` datetime NOT NULL DEFAULT '0001-01-01 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`)
+       `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+        PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;