diff --git a/boot.php b/boot.php index 3462a65fe..f8033e5f5 100755 --- a/boot.php +++ b/boot.php @@ -2062,7 +2062,7 @@ function load_contact_links($uid) { // logger('load_contact_links'); - $r = q("SELECT abook_id, abook_flags, abook_self, abook_incl, abook_excl, abook_my_perms, abook_their_perms, xchan_hash, xchan_photo_m, xchan_name, xchan_url, xchan_addr, xchan_network, xchan_type from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d ", + $r = q("SELECT abook_id, abook_flags, abook_self, abook_incl, abook_excl, xchan_hash, xchan_photo_m, xchan_name, xchan_url, xchan_addr, xchan_network, xchan_type from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d ", intval($uid) ); if($r) { diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 7aa27cfff..f7870887b 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -2,24 +2,22 @@ CREATE TABLE IF NOT EXISTS `abconfig` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `chan` int(10) unsigned NOT NULL DEFAULT 0 , - `xchan` char(191) NOT NULL DEFAULT '', - `cat` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `xchan` char(255) NOT NULL DEFAULT '', + `cat` char(255) NOT NULL DEFAULT '', + `k` char(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), - KEY `chan_xchan` (`chan`, `xchan`), - KEY `cat` (`cat`), - KEY `k` (`k`) + KEY `chan_xchan` (`chan`, `xchan`(191)), + KEY `cat` (`cat`(191)), + KEY `k` (`k`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `abook` ( `abook_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `abook_account` int(10) unsigned NOT NULL DEFAULT 0 , `abook_channel` int(10) unsigned NOT NULL DEFAULT 0 , - `abook_xchan` char(191) NOT NULL DEFAULT '', - `abook_alias` char(191) NOT NULL DEFAULT '', - `abook_my_perms` int(11) NOT NULL DEFAULT 0 , - `abook_their_perms` int(11) NOT NULL DEFAULT 0 , + `abook_xchan` varchar(255) NOT NULL DEFAULT '', + `abook_alias` varchar(255) NOT NULL DEFAULT '', `abook_closeness` tinyint(3) unsigned NOT NULL DEFAULT 99, `abook_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `abook_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -37,22 +35,22 @@ CREATE TABLE IF NOT EXISTS `abook` ( `abook_rself` tinyint(4) NOT NULL DEFAULT 0 , `abook_feed` tinyint(4) NOT NULL DEFAULT 0 , `abook_not_here` tinyint(4) NOT NULL DEFAULT 0 , - `abook_profile` char(191) NOT NULL DEFAULT '', + `abook_profile` varchar(255) NOT NULL DEFAULT '', `abook_incl` text NOT NULL, `abook_excl` text NOT NULL, `abook_instance` text NOT NULL, PRIMARY KEY (`abook_id`), KEY `abook_account` (`abook_account`), KEY `abook_channel` (`abook_channel`), - KEY `abook_xchan` (`abook_xchan`), - KEY `abook_alias` (`abook_alias`), + KEY `abook_xchan` (`abook_xchan`(191)), + KEY `abook_alias` (`abook_alias`(191)), KEY `abook_my_perms` (`abook_my_perms`), KEY `abook_their_perms` (`abook_their_perms`), KEY `abook_closeness` (`abook_closeness`), KEY `abook_created` (`abook_created`), KEY `abook_updated` (`abook_updated`), KEY `abook_flags` (`abook_flags`), - KEY `abook_profile` (`abook_profile`), + KEY `abook_profile` (`abook_profile`(191)), KEY `abook_dob` (`abook_dob`), KEY `abook_connected` (`abook_connected`), KEY `abook_blocked` (`abook_blocked`), @@ -70,78 +68,78 @@ CREATE TABLE IF NOT EXISTS `account` ( `account_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `account_parent` int(10) unsigned NOT NULL DEFAULT 0 , `account_default_channel` int(10) unsigned NOT NULL DEFAULT 0 , - `account_salt` char(32) NOT NULL DEFAULT '', - `account_password` char(191) NOT NULL DEFAULT '', - `account_email` char(191) NOT NULL DEFAULT '', - `account_external` char(191) NOT NULL DEFAULT '', - `account_language` char(16) NOT NULL DEFAULT 'en', + `account_salt` varchar(64) NOT NULL DEFAULT '', + `account_password` varchar(255) NOT NULL DEFAULT '', + `account_email` varchar(255) NOT NULL DEFAULT '', + `account_external` varchar(255) NOT NULL DEFAULT '', + `account_language` varchar(16) NOT NULL DEFAULT 'en', `account_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `account_lastlog` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `account_flags` int(10) unsigned NOT NULL DEFAULT 0 , `account_roles` int(10) unsigned NOT NULL DEFAULT 0 , - `account_reset` char(191) NOT NULL DEFAULT '', + `account_reset` varchar(255) NOT NULL DEFAULT '', `account_expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `account_expire_notified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `account_service_class` char(32) NOT NULL DEFAULT '', + `account_service_class` varchar(255) NOT NULL DEFAULT '', `account_level` int(10) unsigned NOT NULL DEFAULT 0 , `account_password_changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`account_id`), - KEY `account_email` (`account_email`), - KEY `account_service_class` (`account_service_class`), + KEY `account_email` (`account_email`(191)), + KEY `account_service_class` (`account_service_class`(191)), KEY `account_parent` (`account_parent`), KEY `account_flags` (`account_flags`), KEY `account_roles` (`account_roles`), KEY `account_lastlog` (`account_lastlog`), KEY `account_expires` (`account_expires`), KEY `account_default_channel` (`account_default_channel`), - KEY `account_external` (`account_external`), + KEY `account_external` (`account_external`(191)), KEY `account_level` (`account_level`), KEY `account_password_changed` (`account_password_changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `addon` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `aname` char(191) NOT NULL DEFAULT '', - `version` char(191) NOT NULL DEFAULT '', + `aname` varchar(255) NOT NULL DEFAULT '', + `version` varchar(255) NOT NULL DEFAULT '', `installed` tinyint(1) NOT NULL DEFAULT 0 , `hidden` tinyint(1) NOT NULL DEFAULT 0 , `tstamp` bigint(20) NOT NULL DEFAULT 0 , `plugin_admin` tinyint(1) NOT NULL DEFAULT 0 , PRIMARY KEY (`id`), KEY `hidden` (`hidden`), - KEY `aname` (`aname`), + KEY `aname` (`aname`(191)), KEY `installed` (`installed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `app` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `app_id` char(191) NOT NULL DEFAULT '', - `app_sig` char(191) NOT NULL DEFAULT '', - `app_author` char(191) NOT NULL DEFAULT '', - `app_name` char(191) NOT NULL DEFAULT '', + `app_id` varchar(255) NOT NULL DEFAULT '', + `app_sig` varchar(255) NOT NULL DEFAULT '', + `app_author` varchar(255) NOT NULL DEFAULT '', + `app_name` varchar(255) NOT NULL DEFAULT '', `app_desc` text NOT NULL, - `app_url` char(191) NOT NULL DEFAULT '', - `app_photo` char(191) NOT NULL DEFAULT '', - `app_version` char(191) NOT NULL DEFAULT '', + `app_url` varchar(255) NOT NULL DEFAULT '', + `app_photo` varchar(255) NOT NULL DEFAULT '', + `app_version` varchar(255) NOT NULL DEFAULT '', `app_channel` int(11) NOT NULL DEFAULT 0 , - `app_addr` char(191) NOT NULL DEFAULT '', - `app_price` char(191) NOT NULL DEFAULT '', - `app_page` char(191) NOT NULL DEFAULT '', - `app_requires` char(191) NOT NULL DEFAULT '', + `app_addr` varchar(255) NOT NULL DEFAULT '', + `app_price` varchar(255) NOT NULL DEFAULT '', + `app_page` varchar(255) NOT NULL DEFAULT '', + `app_requires` varchar(512) NOT NULL DEFAULT '', `app_deleted` int(11) NOT NULL DEFAULT 0 , `app_system` int(11) NOT NULL DEFAULT 0 , - `app_plugin` char(191) NOT NULL DEFAULT '', + `app_plugin` varchar(255) NOT NULL DEFAULT '', `app_options` int(11) NOT NULL DEFAULT 0 , `app_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `app_edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`id`), - KEY `app_id` (`app_id`), - KEY `app_name` (`app_name`), - KEY `app_url` (`app_url`), - KEY `app_photo` (`app_photo`), - KEY `app_version` (`app_version`), + KEY `app_id` (`app_id`(191)), + KEY `app_name` (`app_name`(191)), + KEY `app_url` (`app_url`(191)), + KEY `app_photo` (`app_photo`(191)), + KEY `app_version` (`app_version`(191)), KEY `app_channel` (`app_channel`), - KEY `app_price` (`app_price`), + KEY `app_price` (`app_price`(191)), KEY `app_created` (`app_created`), KEY `app_deleted` (`app_deleted`), KEY `app_system` (`app_system`), @@ -151,18 +149,18 @@ CREATE TABLE IF NOT EXISTS `app` ( CREATE TABLE IF NOT EXISTS `atoken` ( `atoken_id` int(11) NOT NULL AUTO_INCREMENT, - `atoken_guid` char(191) NOT NULL DEFAULT '', + `atoken_guid` varchar(255) NOT NULL DEFAULT '', `atoken_aid` int(11) NOT NULL DEFAULT 0 , `atoken_uid` int(11) NOT NULL DEFAULT 0 , - `atoken_name` char(191) NOT NULL DEFAULT '', - `atoken_token` char(191) NOT NULL DEFAULT '', + `atoken_name` varchar(255) NOT NULL DEFAULT '', + `atoken_token` varchar(255) NOT NULL DEFAULT '', `atoken_expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`atoken_id`), - KEY `atoken_guid` (`atoken_guid`), + KEY `atoken_guid` (`atoken_guid`(191)), KEY `atoken_aid` (`atoken_aid`), KEY `atoken_uid` (`atoken_uid`), - KEY `atoken_name` (`atoken_name`), - KEY `atoken_token` (`atoken_token`), + KEY `atoken_name` (`atoken_name`(191)), + KEY `atoken_token` (`atoken_token`(191)), KEY `atoken_expires` (`atoken_expires`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -170,13 +168,13 @@ CREATE TABLE IF NOT EXISTS `attach` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT 0 , `uid` int(10) unsigned NOT NULL DEFAULT 0 , - `hash` char(191) NOT NULL DEFAULT '', - `creator` char(191) NOT NULL DEFAULT '', - `filename` char(191) NOT NULL DEFAULT '', - `filetype` char(191) NOT NULL DEFAULT '', + `hash` varchar(255) NOT NULL DEFAULT '', + `creator` varchar(255) NOT NULL DEFAULT '', + `filename` varchar(4095) NOT NULL DEFAULT '', + `filetype` varchar(255) NOT NULL DEFAULT '', `filesize` int(10) unsigned NOT NULL DEFAULT 0 , `revision` int(10) unsigned NOT NULL DEFAULT 0 , - `folder` char(191) NOT NULL DEFAULT '', + `folder` varchar(255) NOT NULL DEFAULT '', `flags` int(10) unsigned NOT NULL DEFAULT 0 , `is_dir` tinyint(1) NOT NULL DEFAULT 0 , `is_photo` tinyint(1) NOT NULL DEFAULT 0 , @@ -193,34 +191,34 @@ CREATE TABLE IF NOT EXISTS `attach` ( PRIMARY KEY (`id`), KEY `aid` (`aid`), KEY `uid` (`uid`), - KEY `hash` (`hash`), - KEY `filename` (`filename`), - KEY `filetype` (`filetype`), + KEY `hash` (`hash`(191)), + KEY `filename` (`filename`(191)), + KEY `filetype` (`filetype`(191)), KEY `filesize` (`filesize`), KEY `created` (`created`), KEY `edited` (`edited`), KEY `revision` (`revision`), - KEY `folder` (`folder`), + KEY `folder` (`folder`(191)), KEY `flags` (`flags`), - KEY `creator` (`creator`), + KEY `creator` (`creator`(191)), KEY `is_dir` (`is_dir`), KEY `is_photo` (`is_photo`), KEY `os_storage` (`os_storage`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `auth_codes` ( - `id` varchar(40) NOT NULL DEFAULT '', - `client_id` varchar(20) NOT NULL DEFAULT '', - `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `id` varchar(16384) NOT NULL DEFAULT '', + `client_id` varchar(255) NOT NULL DEFAULT '', + `redirect_uri` varchar(512) NOT NULL DEFAULT '', `expires` int(11) NOT NULL DEFAULT 0 , `auth_scope` varchar(512) NOT NULL DEFAULT '', - PRIMARY KEY (`id`) + PRIMARY KEY (`id`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `block` ( `block_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `block_channel_id` int(10) UNSIGNED NOT NULL, - `block_entity` text NOT NULL, + `block_entity` varchar(1023) NOT NULL, `block_type` int(11) NOT NULL, `block_comment` mediumtext NOT NULL, PRIMARY KEY (`block_id`), @@ -230,46 +228,46 @@ CREATE TABLE IF NOT EXISTS `block` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `cache` ( - `k` char(191) NOT NULL DEFAULT '', + `k` char(512) NOT NULL DEFAULT '', `v` text NOT NULL, `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - PRIMARY KEY (`k`) + PRIMARY KEY (`k`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `cal` ( `cal_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cal_aid` int(10) unsigned NOT NULL DEFAULT 0 , `cal_uid` int(10) unsigned NOT NULL DEFAULT 0 , - `cal_hash` varchar(191) NOT NULL DEFAULT '', - `cal_name` varchar(191) NOT NULL DEFAULT '', - `uri` varchar(191) NOT NULL DEFAULT '', - `logname` varchar(191) NOT NULL DEFAULT '', - `pass` varchar(191) NOT NULL DEFAULT '', - `ctag` varchar(191) NOT NULL DEFAULT '', - `synctoken` varchar(191) NOT NULL DEFAULT '', - `cal_types` varchar(191) NOT NULL DEFAULT '', + `cal_hash` varchar(255) NOT NULL DEFAULT '', + `cal_name` varchar(255) NOT NULL DEFAULT '', + `uri` varchar(1023) NOT NULL DEFAULT '', + `logname` varchar(255) NOT NULL DEFAULT '', + `pass` varchar(255) NOT NULL DEFAULT '', + `ctag` varchar(255) NOT NULL DEFAULT '', + `synctoken` varchar(255) NOT NULL DEFAULT '', + `cal_types` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`cal_id`), KEY `cal_aid` (`cal_aid`), KEY `cal_uid` (`cal_uid`), - KEY `cal_hash` (`cal_hash`), - KEY `cal_name` (`cal_name`), - KEY `cal_types` (`cal_types`) + KEY `cal_hash` (`cal_hash`(191)), + KEY `cal_name` (`cal_name`(191)), + KEY `cal_types` (`cal_types`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `channel` ( `channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_account_id` int(10) unsigned NOT NULL DEFAULT 0 , `channel_primary` tinyint(1) unsigned NOT NULL DEFAULT 0 , - `channel_name` char(191) NOT NULL DEFAULT '', - `channel_parent` char(191) NOT NULL DEFAULT '', - `channel_address` char(191) NOT NULL DEFAULT '', - `channel_guid` char(191) NOT NULL DEFAULT '', + `channel_name` varchar(255) NOT NULL DEFAULT '', + `channel_parent` varchar(255) NOT NULL DEFAULT '', + `channel_address` varchar(255) NOT NULL DEFAULT '', + `channel_guid` varchar(255) NOT NULL DEFAULT '', `channel_guid_sig` text NOT NULL, - `channel_hash` char(191) NOT NULL DEFAULT '', - `channel_timezone` char(128) NOT NULL DEFAULT 'UTC', - `channel_location` char(191) NOT NULL DEFAULT '', - `channel_theme` char(191) NOT NULL DEFAULT '', - `channel_startpage` char(191) NOT NULL DEFAULT '', + `channel_hash` varchar(255) NOT NULL DEFAULT '', + `channel_timezone` varchar(255) NOT NULL DEFAULT 'UTC', + `channel_location` varchar(255) NOT NULL DEFAULT '', + `channel_theme` varchar(255) NOT NULL DEFAULT '', + `channel_startpage` varchar(255) NOT NULL DEFAULT '', `channel_pubkey` text NOT NULL, `channel_prvkey` text NOT NULL, `channel_notifyflags` int(10) unsigned NOT NULL DEFAULT 65535, @@ -281,33 +279,33 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_max_anon_mail` int(10) unsigned NOT NULL DEFAULT 10, `channel_max_friend_req` int(10) unsigned NOT NULL DEFAULT 10, `channel_expire_days` int(11) NOT NULL DEFAULT 0 , - `channel_passwd_reset` char(191) NOT NULL DEFAULT '', - `channel_default_group` char(191) NOT NULL DEFAULT '', + `channel_passwd_reset` varchar(255) NOT NULL DEFAULT '', + `channel_default_group` varchar(255) NOT NULL DEFAULT '', `channel_allow_cid` mediumtext NOT NULL, `channel_allow_gid` mediumtext NOT NULL, `channel_deny_cid` mediumtext NOT NULL, `channel_deny_gid` mediumtext NOT NULL, `channel_removed` tinyint(1) NOT NULL DEFAULT 0 , `channel_system` tinyint(1) NOT NULL DEFAULT 0 , - `channel_moved` char(191) NOT NULL DEFAULT '', - `channel_password` varchar(191) NOT NULL, - `channel_salt` varchar(191) NOT NULL, + `channel_moved` varchar(255) NOT NULL DEFAULT '', + `channel_password` varchar(255) NOT NULL, + `channel_salt` varchar(255) NOT NULL, PRIMARY KEY (`channel_id`), - KEY `channel_address` (`channel_address`), + KEY `channel_address` (`channel_address`(191)), KEY `channel_account_id` (`channel_account_id`), KEY `channel_primary` (`channel_primary`), - KEY `channel_name` (`channel_name`), - KEY `channel_parent` (`channel_parent`), - KEY `channel_timezone` (`channel_timezone`), - KEY `channel_location` (`channel_location`), - KEY `channel_theme` (`channel_theme`), + KEY `channel_name` (`channel_name`(191)), + KEY `channel_parent` (`channel_parent`(191)), + KEY `channel_timezone` (`channel_timezone`(191)), + KEY `channel_location` (`channel_location`(191)), + KEY `channel_theme` (`channel_theme`(191), KEY `channel_notifyflags` (`channel_notifyflags`), KEY `channel_pageflags` (`channel_pageflags`), KEY `channel_max_anon_mail` (`channel_max_anon_mail`), KEY `channel_max_friend_req` (`channel_max_friend_req`), KEY `channel_default_gid` (`channel_default_group`), - KEY `channel_guid` (`channel_guid`), - KEY `channel_hash` (`channel_hash`), + KEY `channel_guid` (`channel_guid`(191)), + KEY `channel_hash` (`channel_hash`(191)), KEY `channel_expire_days` (`channel_expire_days`), KEY `channel_deleted` (`channel_deleted`), KEY `channel_active` (`channel_active`), @@ -315,40 +313,40 @@ CREATE TABLE IF NOT EXISTS `channel` ( KEY `channel_removed` (`channel_removed`), KEY `channel_system` (`channel_system`), KEY `channel_lastpost` (`channel_lastpost`), - KEY `channel_moved` (`channel_moved`) + KEY `channel_moved` (`channel_moved`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `chat` ( `chat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `chat_room` int(10) unsigned NOT NULL DEFAULT 0 , - `chat_xchan` char(191) NOT NULL DEFAULT '', + `chat_xchan` varchar(255) NOT NULL DEFAULT '', `chat_text` mediumtext NOT NULL, `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`chat_id`), KEY `chat_room` (`chat_room`), - KEY `chat_xchan` (`chat_xchan`), + KEY `chat_xchan` (`chat_xchan`(191)), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `chatpresence` ( `cp_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cp_room` int(10) unsigned NOT NULL DEFAULT 0 , - `cp_xchan` char(191) NOT NULL DEFAULT '', + `cp_xchan` varchar(255) NOT NULL DEFAULT '', `cp_last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `cp_status` char(191) NOT NULL DEFAULT '', - `cp_client` char(128) NOT NULL DEFAULT '', + `cp_status` varchar(255) NOT NULL DEFAULT '', + `cp_client` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`cp_id`), KEY `cp_room` (`cp_room`), - KEY `cp_xchan` (`cp_xchan`), + KEY `cp_xchan` (`cp_xchan`(191)), KEY `cp_last` (`cp_last`), - KEY `cp_status` (`cp_status`) + KEY `cp_status` (`cp_status`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `chatroom` ( `cr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cr_aid` int(10) unsigned NOT NULL DEFAULT 0 , `cr_uid` int(10) unsigned NOT NULL DEFAULT 0 , - `cr_name` char(191) NOT NULL DEFAULT '', + `cr_name` varchar(255) NOT NULL DEFAULT '', `cr_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `cr_edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `cr_expire` int(10) unsigned NOT NULL DEFAULT 0 , @@ -359,63 +357,49 @@ CREATE TABLE IF NOT EXISTS `chatroom` ( PRIMARY KEY (`cr_id`), KEY `cr_aid` (`cr_aid`), KEY `cr_uid` (`cr_uid`), - KEY `cr_name` (`cr_name`), + KEY `cr_name` (`cr_name`(191)), KEY `cr_created` (`cr_created`), KEY `cr_edited` (`cr_edited`), KEY `cr_expire` (`cr_expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `clients` ( - `client_id` varchar(191) NOT NULL DEFAULT '', + `client_id` varchar(255) NOT NULL DEFAULT '', `pw` varchar(191) NOT NULL DEFAULT '', `redirect_uri` varchar(200) NOT NULL DEFAULT '', `clname` text, `icon` text, `uid` int(11) NOT NULL DEFAULT 0 , - PRIMARY KEY (`client_id`) + PRIMARY KEY (`client_id`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `config` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cat` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', `v` text NOT NULL, PRIMARY KEY (`id`), - UNIQUE KEY `access` (`cat`,`k`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - -CREATE TABLE IF NOT EXISTS `conv` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `guid` char(191) NOT NULL DEFAULT '', - `recips` mediumtext NOT NULL, - `uid` int(11) NOT NULL DEFAULT 0 , - `creator` char(191) NOT NULL DEFAULT '', - `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `subject` mediumtext NOT NULL, - PRIMARY KEY (`id`), - KEY `created` (`created`), - KEY `updated` (`updated`) + UNIQUE KEY `access` (`cat`(191),`k`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `dreport` ( `dreport_id` int(11) NOT NULL AUTO_INCREMENT, `dreport_channel` int(11) NOT NULL DEFAULT 0 , - `dreport_mid` char(191) NOT NULL DEFAULT '', - `dreport_site` char(191) NOT NULL DEFAULT '', - `dreport_recip` char(191) NOT NULL DEFAULT '', - `dreport_name` char(191) NOT NULL DEFAULT '', - `dreport_result` char(191) NOT NULL DEFAULT '', + `dreport_mid` varchar(255) NOT NULL DEFAULT '', + `dreport_site` varchar(255) NOT NULL DEFAULT '', + `dreport_recip` varchar(255) NOT NULL DEFAULT '', + `dreport_name` varchar(255) NOT NULL DEFAULT '', + `dreport_result` varchar(255) NOT NULL DEFAULT '', `dreport_time` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `dreport_xchan` char(191) NOT NULL DEFAULT '', - `dreport_queue` char(191) NOT NULL DEFAULT '', + `dreport_xchan` varchar(255) NOT NULL DEFAULT '', + `dreport_queue` varchar(255) NOT NULL DEFAULT '', `dreport_log` text NOT NULL, PRIMARY KEY (`dreport_id`), - KEY `dreport_mid` (`dreport_mid`), - KEY `dreport_site` (`dreport_site`), + KEY `dreport_mid` (`dreport_mid`(191)), + KEY `dreport_site` (`dreport_site`(191)), KEY `dreport_time` (`dreport_time`), - KEY `dreport_xchan` (`dreport_xchan`), - KEY `dreport_queue` (`dreport_queue`), + KEY `dreport_xchan` (`dreport_xchan`(191)), + KEY `dreport_queue` (`dreport_queue`(191)), KEY `dreport_channel` (`dreport_channel`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -424,8 +408,8 @@ CREATE TABLE IF NOT EXISTS `event` ( `aid` int(10) unsigned NOT NULL DEFAULT 0 , `uid` int(11) NOT NULL DEFAULT 0 , `cal_id` int(11) unsigned NOT NULL DEFAULT 0 , - `event_xchan` char(191) NOT NULL DEFAULT '', - `event_hash` char(191) NOT NULL DEFAULT '', + `event_xchan` varchar(255) NOT NULL DEFAULT '', + `event_hash` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `dtstart` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -433,7 +417,7 @@ CREATE TABLE IF NOT EXISTS `event` ( `summary` text NOT NULL, `description` text NOT NULL, `location` text NOT NULL, - `etype` char(191) NOT NULL DEFAULT '', + `etype` varchar(255) NOT NULL DEFAULT '', `nofinish` tinyint(1) NOT NULL DEFAULT 0 , `adjust` tinyint(1) NOT NULL DEFAULT 1, `dismissed` tinyint(1) NOT NULL DEFAULT 0 , @@ -441,7 +425,7 @@ CREATE TABLE IF NOT EXISTS `event` ( `allow_gid` mediumtext NOT NULL, `deny_cid` mediumtext NOT NULL, `deny_gid` mediumtext NOT NULL, - `event_status` char(191) NOT NULL DEFAULT '', + `event_status` varchar(255) NOT NULL DEFAULT '', `event_status_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `event_percent` smallint(6) NOT NULL DEFAULT 0 , `event_repeat` text NOT NULL, @@ -451,57 +435,57 @@ CREATE TABLE IF NOT EXISTS `event` ( PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `cal_id` (`cal_id`), - KEY `etype` (`etype`), + KEY `etype` (`etype`(191)), KEY `dtstart` (`dtstart`), KEY `dtend` (`dtend`), KEY `adjust` (`adjust`), KEY `nofinish` (`nofinish`), KEY `dismissed` (`dismissed`), KEY `aid` (`aid`), - KEY `event_hash` (`event_hash`), - KEY `event_xchan` (`event_xchan`), - KEY `event_status` (`event_status`), + KEY `event_hash` (`event_hash`(191)), + KEY `event_xchan` (`event_xchan`(191)), + KEY `event_status` (`event_status`(191)), KEY `event_sequence` (`event_sequence`), KEY `event_priority` (`event_priority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `pgrp` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `hash` char(191) NOT NULL DEFAULT '', + `hash` varchar(255) NOT NULL DEFAULT '', `uid` int(10) unsigned NOT NULL DEFAULT 0 , `visible` tinyint(1) NOT NULL DEFAULT 0 , `deleted` tinyint(1) NOT NULL DEFAULT 0 , - `gname` char(191) NOT NULL DEFAULT '', - `rule` char(191) NOT NULL DEFAULT '', + `gname` varchar(255) NOT NULL DEFAULT '', + `rule` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `visible` (`visible`), KEY `deleted` (`deleted`), - KEY `hash` (`hash`), - KEY `gname` (`gname`), - KEY `rule` (`rule`) + KEY `hash` (`hash`(191)), + KEY `gname` (`gname`(191)), + KEY `rule` (`rule`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `pgrp_member` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL DEFAULT 0 , `gid` int(10) unsigned NOT NULL DEFAULT 0 , - `xchan` char(191) NOT NULL DEFAULT '', + `xchan` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `gid` (`gid`), - KEY `xchan` (`xchan`) + KEY `xchan` (`xchan`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `hook` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `hook` char(191) NOT NULL DEFAULT '', - `file` char(191) NOT NULL DEFAULT '', - `fn` char(191) NOT NULL DEFAULT '', + `hook` varchar(255) NOT NULL DEFAULT '', + `file` varchar(255) NOT NULL DEFAULT '', + `fn` varchar(255) NOT NULL DEFAULT '', `priority` smallint NOT NULL DEFAULT 0 , `hook_version` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`id`), - KEY `hook` (`hook`), + KEY `hook` (`hook`(191)), KEY `priority` (`priority`), KEY `hook_version` (`hook_version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -509,20 +493,20 @@ CREATE TABLE IF NOT EXISTS `hook` ( CREATE TABLE IF NOT EXISTS `hubloc` ( `hubloc_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `hubloc_guid` char(191) NOT NULL DEFAULT '', + `hubloc_guid` varchar(255) NOT NULL DEFAULT '', `hubloc_guid_sig` text NOT NULL, - `hubloc_id_url` char(191) NOT NULL DEFAULT '0', - `hubloc_hash` char(191) NOT NULL DEFAULT '', - `hubloc_addr` char(191) NOT NULL DEFAULT '', - `hubloc_network` char(32) NOT NULL DEFAULT '', + `hubloc_id_url` varchar(255) NOT NULL DEFAULT '0', + `hubloc_hash` varchar(255) NOT NULL DEFAULT '', + `hubloc_addr` varchar(255) NOT NULL DEFAULT '', + `hubloc_network` varchar(255) NOT NULL DEFAULT '', `hubloc_flags` int(10) unsigned NOT NULL DEFAULT 0 , `hubloc_status` int(10) unsigned NOT NULL DEFAULT 0 , - `hubloc_url` char(191) NOT NULL DEFAULT '', + `hubloc_url` varchar(255) NOT NULL DEFAULT '', `hubloc_url_sig` text NOT NULL, - `hubloc_site_id` char(191) NOT NULL DEFAULT '', - `hubloc_host` char(191) NOT NULL DEFAULT '', - `hubloc_callback` char(191) NOT NULL DEFAULT '', - `hubloc_connect` char(191) NOT NULL DEFAULT '', + `hubloc_site_id` varchar(255) NOT NULL DEFAULT '', + `hubloc_host` varchar(255) NOT NULL DEFAULT '', + `hubloc_callback` varchar(255) NOT NULL DEFAULT '', + `hubloc_connect` varchar(255) NOT NULL DEFAULT '', `hubloc_sitekey` text NOT NULL, `hubloc_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `hubloc_connected` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -531,19 +515,19 @@ CREATE TABLE IF NOT EXISTS `hubloc` ( `hubloc_error` tinyint(1) NOT NULL DEFAULT 0 , `hubloc_deleted` tinyint(1) NOT NULL DEFAULT 0 , PRIMARY KEY (`hubloc_id`), - KEY `hubloc_url` (`hubloc_url`), - KEY `hubloc_site_id` (`hubloc_site_id`), - KEY `hubloc_guid` (`hubloc_guid`), - KEY `hubloc_id_url` (`hubloc_id_url`), - KEY `hubloc_hash` (`hubloc_hash`), + KEY `hubloc_url` (`hubloc_url`(191)), + KEY `hubloc_site_id` (`hubloc_site_id`(191)), + KEY `hubloc_guid` (`hubloc_guid`(191)), + KEY `hubloc_id_url` (`hubloc_id_url`(191)), + KEY `hubloc_hash` (`hubloc_hash`(191)), KEY `hubloc_flags` (`hubloc_flags`), - KEY `hubloc_connect` (`hubloc_connect`), - KEY `hubloc_host` (`hubloc_host`), - KEY `hubloc_addr` (`hubloc_addr`), + KEY `hubloc_connect` (`hubloc_connect`(191)), + KEY `hubloc_host` (`hubloc_host`(191)), + KEY `hubloc_addr` (`hubloc_addr`(191)), KEY `hubloc_updated` (`hubloc_updated`), KEY `hubloc_connected` (`hubloc_connected`), KEY `hubloc_status` (`hubloc_status`), - KEY `hubloc_network` (`hubloc_network`), + KEY `hubloc_network` (`hubloc_network`(191)), KEY `hubloc_primary` (`hubloc_primary`), KEY `hubloc_orphancheck` (`hubloc_orphancheck`), KEY `hubloc_deleted` (`hubloc_deleted`), @@ -553,14 +537,14 @@ CREATE TABLE IF NOT EXISTS `hubloc` ( CREATE TABLE IF NOT EXISTS `iconfig` ( `id` int(11) NOT NULL AUTO_INCREMENT, `iid` int(11) NOT NULL DEFAULT 0 , - `cat` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, `sharing` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`id`), KEY `iid` (`iid`), - KEY `cat` (`cat`), - KEY `k` (`k`), + KEY `cat` (`cat`(191)), + KEY `k` (`k`(191)), KEY `sharing` (`sharing`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -568,28 +552,28 @@ CREATE TABLE IF NOT EXISTS `issue` ( `issue_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `issue_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `issue_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `issue_assigned` char(191) NOT NULL DEFAULT '', + `issue_assigned` varchar(255) NOT NULL DEFAULT '', `issue_priority` int(11) NOT NULL DEFAULT 0 , `issue_status` int(11) NOT NULL DEFAULT 0 , - `issue_component` char(191) NOT NULL DEFAULT '', + `issue_component` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`issue_id`), KEY `issue_created` (`issue_created`), KEY `issue_updated` (`issue_updated`), - KEY `issue_assigned` (`issue_assigned`), + KEY `issue_assigned` (`issue_assigned`(191)), KEY `issue_priority` (`issue_priority`), KEY `issue_status` (`issue_status`), - KEY `issue_component` (`issue_component`) + KEY `issue_component` (`issue_component`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `mid` char(191) NOT NULL DEFAULT '', - `uuid` char(191) NOT NULL DEFAULT '', + `mid` varchar(512) NOT NULL DEFAULT '', + `uuid` varchar(255) NOT NULL DEFAULT '', `aid` int(10) unsigned NOT NULL DEFAULT 0 , `uid` int(10) unsigned NOT NULL DEFAULT 0 , `parent` int(10) unsigned NOT NULL DEFAULT 0 , - `parent_mid` char(191) NOT NULL DEFAULT '', - `thr_parent` char(191) NOT NULL DEFAULT '', + `parent_mid` varchar(512) NOT NULL DEFAULT '', + `thr_parent` varchar(512) NOT NULL DEFAULT '', `item_level` int(10) unsigned NOT NULL DEFAULT 0, `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -598,36 +582,36 @@ CREATE TABLE IF NOT EXISTS `item` ( `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `comments_closed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `owner_xchan` char(191) NOT NULL DEFAULT '', - `author_xchan` char(191) NOT NULL DEFAULT '', - `source_xchan` char(191) NOT NULL DEFAULT '', - `mimetype` char(191) NOT NULL DEFAULT '', + `owner_xchan` varchar(255) NOT NULL DEFAULT '', + `author_xchan` varchar(255) NOT NULL DEFAULT '', + `source_xchan` varchar(255) NOT NULL DEFAULT '', + `mimetype` varchar(255) NOT NULL DEFAULT '', `replyto` text NOT NULL, `title` text NOT NULL, `summary` mediumtext NOT NULL, `body` mediumtext NOT NULL, `html` mediumtext NOT NULL, - `app` char(191) NOT NULL DEFAULT '', - `lang` char(64) NOT NULL DEFAULT '', + `app` varchar(255) NOT NULL DEFAULT '', + `lang` varchar(255) NOT NULL DEFAULT '', `revision` int(10) unsigned NOT NULL DEFAULT 0 , - `verb` char(191) NOT NULL DEFAULT '', - `obj_type` char(191) NOT NULL DEFAULT '', + `verb` varchar(255) NOT NULL DEFAULT '', + `obj_type` varchar(255) NOT NULL DEFAULT '', `obj` text NOT NULL, - `tgt_type` char(191) NOT NULL DEFAULT '', + `tgt_type` varchar(255) NOT NULL DEFAULT '', `target` text NOT NULL, - `layout_mid` char(191) NOT NULL DEFAULT '', + `layout_mid` varchar(255) NOT NULL DEFAULT '', `postopts` text NOT NULL, `route` text NOT NULL, - `llink` char(191) NOT NULL DEFAULT '', - `plink` char(191) NOT NULL DEFAULT '', - `resource_id` char(191) NOT NULL DEFAULT '', - `resource_type` char(16) NOT NULL DEFAULT '', + `llink` varchar(255) NOT NULL DEFAULT '', + `plink` varchar(255) NOT NULL DEFAULT '', + `resource_id` varchar(255) NOT NULL DEFAULT '', + `resource_type` varchar(255) NOT NULL DEFAULT '', `attach` mediumtext NOT NULL, `sig` text NOT NULL, - `location` char(191) NOT NULL DEFAULT '', - `coord` char(191) NOT NULL DEFAULT '', - `public_policy` char(191) NOT NULL DEFAULT '', - `comment_policy` char(191) NOT NULL DEFAULT '', + `location` varchar(255) NOT NULL DEFAULT '', + `coord` varchar(255) NOT NULL DEFAULT '', + `public_policy` varchar(255) NOT NULL DEFAULT '', + `comment_policy` varchar(255) NOT NULL DEFAULT '', `allow_cid` mediumtext NOT NULL, `allow_gid` mediumtext NOT NULL, `deny_cid` mediumtext NOT NULL, @@ -674,25 +658,25 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `uid_item_retained` (`uid`, `item_retained`), KEY `uid_item_private` (`uid`, `item_private`), KEY `uid_resource_type` (`uid`, `resource_type`), - KEY `owner_xchan` (`owner_xchan`), - KEY `author_xchan` (`author_xchan`), - KEY `resource_id` (`resource_id`), - KEY `resource_type` (`resource_type`), + KEY `owner_xchan` (`owner_xchan`(191)), + KEY `author_xchan` (`author_xchan`(191)), + KEY `resource_id` (`resource_id`(191)), + KEY `resource_type` (`resource_type`(191)), KEY `commented` (`commented`), - KEY `verb` (`verb`), - KEY `obj_type` (`obj_type`), - KEY `llink` (`llink`), + KEY `verb` (`verb`(191)), + KEY `obj_type` (`obj_type`(191)), + KEY `llink` (`llink`(191)), KEY `expires` (`expires`), KEY `revision` (`revision`), - KEY `mimetype` (`mimetype`), - KEY `mid` (`mid`), - KEY `uuid` (`uuid`), - KEY `parent_mid` (`parent_mid`), - KEY `thr_parent` (`thr_parent`), - KEY `uid_mid` (`uid`,`mid`), - KEY `comment_policy` (`comment_policy`), - KEY `layout_mid` (`layout_mid`), - KEY `public_policy` (`public_policy`), + KEY `mimetype` (`mimetype`(191)), + KEY `mid` (`mid`(191)), + KEY `uuid` (`uuid`(191)), + KEY `parent_mid` (`parent_mid`(191)), + KEY `thr_parent` (`thr_parent`(191)), + KEY `uid_mid` (`uid`,`mid`(191)), + KEY `comment_policy` (`comment_policy`(191)), + KEY `layout_mid` (`layout_mid`(191)), + KEY `public_policy` (`public_policy`(191)), KEY `comments_closed` (`comments_closed`), KEY `changed` (`changed`), KEY `item_origin` (`item_origin`), @@ -718,106 +702,61 @@ CREATE TABLE IF NOT EXISTS `item` ( CREATE TABLE IF NOT EXISTS `likes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_id` int(10) unsigned NOT NULL DEFAULT 0 , - `liker` char(191) NOT NULL DEFAULT '', - `likee` char(191) NOT NULL DEFAULT '', + `liker` varchar(255) NOT NULL DEFAULT '', + `likee` varchar(255) NOT NULL DEFAULT '', `iid` int(11) unsigned NOT NULL DEFAULT 0 , - `i_mid` char(191) NOT NULL DEFAULT '', - `verb` char(191) NOT NULL DEFAULT '', - `target_type` char(191) NOT NULL DEFAULT '', - `target_id` char(191) NOT NULL DEFAULT '', + `i_mid` varchar(255) NOT NULL DEFAULT '', + `verb` varchar(255) NOT NULL DEFAULT '', + `target_type` varchar(255) NOT NULL DEFAULT '', + `target_id` varchar(255) NOT NULL DEFAULT '', `target` mediumtext NOT NULL, PRIMARY KEY (`id`), - KEY `liker` (`liker`), - KEY `likee` (`likee`), + KEY `liker` (`liker`(191)), + KEY `likee` (`likee`(191)), KEY `iid` (`iid`), - KEY `i_mid` (`i_mid`), - KEY `verb` (`verb`), - KEY `target_type` (`target_type`), + KEY `i_mid` (`i_mid`(191)), + KEY `verb` (`verb`(191)), + KEY `target_type` (`target_type`(191)), KEY `channel_id` (`channel_id`), - KEY `target_id` (`target_id`) + KEY `target_id` (`target_id`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `linkid` ( `link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, - `ident` varchar(191) NOT NULL DEFAULT '', - `link` varchar(191) NOT NULL DEFAULT '', + `ident` varchar(255) NOT NULL DEFAULT '', + `link` varchar(255) NOT NULL DEFAULT '', `ikey` text NOT NULL, `lkey` text NOT NULL, `isig` text NOT NULL, `lsig` text NOT NULL, `sigtype` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`link_id`), - KEY `ident` (`ident`), - KEY `link` (`link`) + KEY `ident` (`ident`(191)), + KEY `link` (`link`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS listeners ( id int(11) NOT NULL AUTO_INCREMENT, - target_id varchar(191) CHARACTER SET utf8mb4 NOT NULL DEFAULT '', - portable_id varchar(191) CHARACTER SET utf8mb4 NOT NULL DEFAULT '', + target_id varchar(255) CHARACTER SET utf8mb4 NOT NULL DEFAULT '', + portable_id varchar(255) CHARACTER SET utf8mb4 NOT NULL DEFAULT '', ltype int(11) NOT NULL DEFAULT '0', PRIMARY KEY (id), - KEY target_id (target_id), - KEY portable_id (portable_id), + KEY target_id (target_id(191)), + KEY portable_id (portable_id(191)), KEY ltype (ltype) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -CREATE TABLE IF NOT EXISTS `mail` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `convid` int(10) unsigned NOT NULL DEFAULT 0 , - `conv_guid` char(191) NOT NULL DEFAULT '', - `mail_flags` int(10) unsigned NOT NULL DEFAULT 0 , - `from_xchan` char(191) NOT NULL DEFAULT '', - `to_xchan` char(191) NOT NULL DEFAULT '', - `account_id` int(10) unsigned NOT NULL DEFAULT 0 , - `channel_id` int(10) unsigned NOT NULL DEFAULT 0 , - `mail_mimetype` char(64) NOT NULL DEFAULT 'text/bbcode', - `title` text NOT NULL, - `body` mediumtext NOT NULL, - `sig` text NOT NULL, - `attach` mediumtext NOT NULL, - `mid` char(191) NOT NULL DEFAULT '', - `parent_mid` char(191) NOT NULL DEFAULT '', - `mail_deleted` tinyint(4) NOT NULL DEFAULT 0 , - `mail_replied` tinyint(4) NOT NULL DEFAULT 0 , - `mail_isreply` tinyint(4) NOT NULL DEFAULT 0 , - `mail_seen` tinyint(4) NOT NULL DEFAULT 0 , - `mail_recalled` tinyint(4) NOT NULL DEFAULT 0 , - `mail_obscured` smallint(6) NOT NULL DEFAULT 0 , - `mail_raw` tinyint(4) NOT NULL DEFAULT 0 , - `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - PRIMARY KEY (`id`), - KEY `created` (`created`), - KEY `mail_flags` (`mail_flags`), - KEY `account_id` (`account_id`), - KEY `channel_id` (`channel_id`), - KEY `from_xchan` (`from_xchan`), - KEY `to_xchan` (`to_xchan`), - KEY `mid` (`mid`), - KEY `parent_mid` (`parent_mid`), - KEY `expires` (`expires`), - KEY `convid` (`convid`), - KEY `conv_guid` (`conv_guid`), - KEY `mail_deleted` (`mail_deleted`), - KEY `mail_replied` (`mail_replied`), - KEY `mail_isreply` (`mail_isreply`), - KEY `mail_seen` (`mail_seen`), - KEY `mail_recalled` (`mail_recalled`), - KEY `mail_obscured` (`mail_obscured`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - CREATE TABLE IF NOT EXISTS `menu` ( `menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `menu_channel_id` int(10) unsigned NOT NULL DEFAULT 0 , - `menu_name` char(191) NOT NULL DEFAULT '', - `menu_desc` char(191) NOT NULL DEFAULT '', + `menu_name` varchar(255) NOT NULL DEFAULT '', + `menu_desc` varchar(255) NOT NULL DEFAULT '', `menu_flags` int(11) NOT NULL DEFAULT 0 , `menu_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `menu_edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`menu_id`), KEY `menu_channel_id` (`menu_channel_id`), - KEY `menu_name` (`menu_name`), + KEY `menu_name` (`menu_name`(191)), KEY `menu_flags` (`menu_flags`), KEY `menu_created` (`menu_created`), KEY `menu_edited` (`menu_edited`) @@ -825,8 +764,8 @@ CREATE TABLE IF NOT EXISTS `menu` ( CREATE TABLE IF NOT EXISTS `menu_item` ( `mitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `mitem_link` char(191) NOT NULL DEFAULT '', - `mitem_desc` char(191) NOT NULL DEFAULT '', + `mitem_link` varchar(1024) NOT NULL DEFAULT '', + `mitem_desc` varchar(1024) NOT NULL DEFAULT '', `mitem_flags` int(11) NOT NULL DEFAULT 0 , `allow_cid` mediumtext NOT NULL, `allow_gid` mediumtext NOT NULL, @@ -843,42 +782,42 @@ CREATE TABLE IF NOT EXISTS `menu_item` ( CREATE TABLE IF NOT EXISTS `notify` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `hash` char(191) NOT NULL DEFAULT '', - `xname` char(191) NOT NULL DEFAULT '', - `url` char(191) NOT NULL DEFAULT '', - `photo` char(191) NOT NULL DEFAULT '', + `hash` varchar(255) NOT NULL DEFAULT '', + `xname` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `msg` mediumtext NOT NULL, `aid` int(11) NOT NULL DEFAULT 0 , `uid` int(11) NOT NULL DEFAULT 0 , - `link` char(191) NOT NULL DEFAULT '', - `parent` char(191) NOT NULL DEFAULT '', + `link` varchar(255) NOT NULL DEFAULT '', + `parent` varchar(255) NOT NULL DEFAULT '', `seen` tinyint(1) NOT NULL DEFAULT 0 , `ntype` int(11) NOT NULL DEFAULT 0 , - `verb` char(191) NOT NULL DEFAULT '', - `otype` char(16) NOT NULL DEFAULT '', + `verb` varchar(255) NOT NULL DEFAULT '', + `otype` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `ntype` (`ntype`), KEY `seen` (`seen`), KEY `uid` (`uid`), KEY `created` (`created`), - KEY `hash` (`hash`), - KEY `parent` (`parent`), - KEY `link` (`link`), - KEY `otype` (`otype`), + KEY `hash` (`hash`(191)), + KEY `parent` (`parent`(191)), + KEY `link` (`link`(191)), + KEY `otype` (`otype`(191)), KEY `aid` (`aid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `obj` ( `obj_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `obj_page` char(64) NOT NULL DEFAULT '', - `obj_verb` char(191) NOT NULL DEFAULT '', + `obj_page` varchar(255) NOT NULL DEFAULT '', + `obj_verb` varchar(255) NOT NULL DEFAULT '', `obj_type` int(10) unsigned NOT NULL DEFAULT 0 , - `obj_obj` char(191) NOT NULL DEFAULT '', + `obj_obj` varchar(255) NOT NULL DEFAULT '', `obj_channel` int(10) unsigned NOT NULL DEFAULT 0 , - `obj_term` char(191) NOT NULL DEFAULT '', - `obj_url` char(191) NOT NULL DEFAULT '', - `obj_imgurl` char(191) NOT NULL DEFAULT '', + `obj_term` varchar(255) NOT NULL DEFAULT '', + `obj_url` varchar(255) NOT NULL DEFAULT '', + `obj_imgurl` varchar(255) NOT NULL DEFAULT '', `obj_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `obj_edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `obj_quantity` int(11) NOT NULL DEFAULT 0 , @@ -887,25 +826,25 @@ CREATE TABLE IF NOT EXISTS `obj` ( `deny_cid` mediumtext NOT NULL, `deny_gid` mediumtext NOT NULL, PRIMARY KEY (`obj_id`), - KEY `obj_verb` (`obj_verb`), - KEY `obj_page` (`obj_page`), + KEY `obj_verb` (`obj_verb`(191)), + KEY `obj_page` (`obj_page`(191)), KEY `obj_type` (`obj_type`), KEY `obj_channel` (`obj_channel`), - KEY `obj_term` (`obj_term`), - KEY `obj_url` (`obj_url`), + KEY `obj_term` (`obj_term`(191)), + KEY `obj_url` (`obj_url`(191)), KEY `obj_imgurl` (`obj_imgurl`), KEY `obj_created` (`obj_created`), KEY `obj_edited` (`obj_edited`), KEY `obj_quantity` (`obj_quantity`), - KEY `obj_obj` (`obj_obj`) + KEY `obj_obj` (`obj_obj`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `outq` ( - `outq_hash` char(191) NOT NULL, + `outq_hash` varchar(255) NOT NULL, `outq_account` int(10) unsigned NOT NULL DEFAULT 0 , `outq_channel` int(10) unsigned NOT NULL DEFAULT 0 , - `outq_driver` char(32) NOT NULL DEFAULT '', - `outq_posturl` char(191) NOT NULL DEFAULT '', + `outq_driver` varchar(128) NOT NULL DEFAULT '', + `outq_posturl` varchar(255) NOT NULL DEFAULT '', `outq_async` tinyint(1) NOT NULL DEFAULT 0 , `outq_delivered` tinyint(1) NOT NULL DEFAULT 0 , `outq_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -914,10 +853,10 @@ CREATE TABLE IF NOT EXISTS `outq` ( `outq_notify` mediumtext NOT NULL, `outq_msg` mediumtext NOT NULL, `outq_priority` smallint(6) NOT NULL DEFAULT 0 , - PRIMARY KEY (`outq_hash`), + PRIMARY KEY (`outq_hash`(191)), KEY `outq_account` (`outq_account`), KEY `outq_channel` (`outq_channel`), - KEY `outq_hub` (`outq_posturl`), + KEY `outq_hub` (`outq_posturl`(191)), KEY `outq_created` (`outq_created`), KEY `outq_updated` (`outq_updated`), KEY `outq_scheduled` (`outq_scheduled`), @@ -930,27 +869,27 @@ CREATE TABLE IF NOT EXISTS `outq` ( CREATE TABLE IF NOT EXISTS `pconfig` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT 0 , - `cat` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), - UNIQUE KEY `access` (`uid`,`cat`,`k`) + UNIQUE KEY `access` (`uid`,`cat`(191),`k`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `photo` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT 0 , `uid` int(10) unsigned NOT NULL DEFAULT 0 , - `xchan` char(191) NOT NULL DEFAULT '', - `resource_id` char(191) NOT NULL DEFAULT '', + `xchan` varchar(255) NOT NULL DEFAULT '', + `resource_id` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `title` char(191) NOT NULL DEFAULT '', + `title` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, - `album` char(191) NOT NULL DEFAULT '', - `filename` char(191) NOT NULL DEFAULT '', - `mimetype` char(128) NOT NULL DEFAULT 'image/jpeg', + `album` varchar(255) NOT NULL DEFAULT '', + `filename` varchar(4095) NOT NULL DEFAULT '', + `mimetype` varchar(255) NOT NULL DEFAULT 'image/jpeg', `height` smallint(6) NOT NULL DEFAULT 0 , `width` smallint(6) NOT NULL DEFAULT 0 , `filesize` int(10) unsigned NOT NULL DEFAULT 0 , @@ -969,14 +908,14 @@ CREATE TABLE IF NOT EXISTS `photo` ( `deny_gid` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `uid` (`uid`), - KEY `album` (`album`), + KEY `album` (`album`(191)), KEY `imgscale` (`imgscale`), KEY `profile` (`profile`), KEY `expires` (`expires`), KEY `photo_flags` (`photo_flags`), - KEY `mimetype` (`mimetype`), + KEY `mimetype` (`mimetype`(191)), KEY `aid` (`aid`), - KEY `xchan` (`xchan`), + KEY `xchan` (`xchan`(191)), KEY `filesize` (`filesize`), KEY `resource_id` (`resource_id`), KEY `is_nsfw` (`is_nsfw`), @@ -986,30 +925,30 @@ CREATE TABLE IF NOT EXISTS `photo` ( CREATE TABLE IF NOT EXISTS `poll` ( `poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `poll_guid` varchar(191) NOT NULL, + `poll_guid` varchar(255) NOT NULL, `poll_channel` int(10) unsigned NOT NULL DEFAULT 0 , - `poll_author` varchar(191) NOT NULL, + `poll_author` varchar(255) NOT NULL, `poll_desc` text NOT NULL, `poll_flags` int(11) NOT NULL DEFAULT 0 , `poll_votes` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`poll_id`), - KEY `poll_guid` (`poll_guid`), + KEY `poll_guid` (`poll_guid`(191)), KEY `poll_channel` (`poll_channel`), - KEY `poll_author` (`poll_author`), + KEY `poll_author` (`poll_author`(191)), KEY `poll_flags` (`poll_flags`), KEY `poll_votes` (`poll_votes`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `poll_elm` ( `pelm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pelm_guid` varchar(191) NOT NULL, + `pelm_guid` varchar(255) NOT NULL, `pelm_poll` int(10) unsigned NOT NULL DEFAULT 0 , `pelm_desc` text NOT NULL, `pelm_flags` int(11) NOT NULL DEFAULT 0 , `pelm_result` float NOT NULL DEFAULT 0 , `pelm_order` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`pelm_id`), - KEY `pelm_guid` (`pelm_guid`), + KEY `pelm_guid` (`pelm_guid`(191)), KEY `pelm_poll` (`pelm_poll`), KEY `pelm_result` (`pelm_result`), KEY `pelm_order` (`pelm_order`) @@ -1017,59 +956,59 @@ CREATE TABLE IF NOT EXISTS `poll_elm` ( CREATE TABLE IF NOT EXISTS `profdef` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `field_name` char(191) NOT NULL DEFAULT '', - `field_type` char(16) NOT NULL DEFAULT '', - `field_desc` char(191) NOT NULL DEFAULT '', - `field_help` char(191) NOT NULL DEFAULT '', + `field_name` varchar(255) NOT NULL DEFAULT '', + `field_type` varchar(255) NOT NULL DEFAULT '', + `field_desc` varchar(255) NOT NULL DEFAULT '', + `field_help` varchar(255) NOT NULL DEFAULT '', `field_inputs` mediumtext NOT NULL, PRIMARY KEY (`id`), - KEY `field_name` (`field_name`) + KEY `field_name` (`field_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `profext` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_id` int(10) unsigned NOT NULL DEFAULT 0 , - `hash` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `hash` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `channel_id` (`channel_id`), - KEY `hash` (`hash`), - KEY `k` (`k`) + KEY `hash` (`hash`(191)), + KEY `k` (`k`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `profile` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `profile_guid` char(64) NOT NULL DEFAULT '', + `profile_guid` varchar(255) NOT NULL DEFAULT '', `aid` int(10) unsigned NOT NULL DEFAULT 0 , `uid` int(11) NOT NULL DEFAULT 0 , - `profile_name` char(191) NOT NULL DEFAULT '', + `profile_name` varchar(255) NOT NULL DEFAULT '', `is_default` tinyint(1) NOT NULL DEFAULT 0 , `hide_friends` tinyint(1) NOT NULL DEFAULT 0 , - `fullname` char(191) NOT NULL DEFAULT '', - `pdesc` char(191) NOT NULL DEFAULT '', + `fullname` varchar(255) NOT NULL DEFAULT '', + `pdesc` varchar(255) NOT NULL DEFAULT '', `chandesc` text NOT NULL, - `dob` char(32) NOT NULL DEFAULT '0000-00-00', - `dob_tz` char(191) NOT NULL DEFAULT 'UTC', - `address` char(191) NOT NULL DEFAULT '', - `locality` char(191) NOT NULL DEFAULT '', - `region` char(191) NOT NULL DEFAULT '', - `postal_code` char(32) NOT NULL DEFAULT '', - `country_name` char(191) NOT NULL DEFAULT '', - `hometown` char(191) NOT NULL DEFAULT '', - `gender` char(32) NOT NULL DEFAULT '', - `marital` char(191) NOT NULL DEFAULT '', + `dob` varchar(255) NOT NULL DEFAULT '0000-00-00', + `dob_tz` varchar(255) NOT NULL DEFAULT 'UTC', + `address` varchar(255) NOT NULL DEFAULT '', + `locality` varchar(255) NOT NULL DEFAULT '', + `region` varchar(255) NOT NULL DEFAULT '', + `postal_code` varchar(255) NOT NULL DEFAULT '', + `country_name` varchar(255) NOT NULL DEFAULT '', + `hometown` varchar(255) NOT NULL DEFAULT '', + `gender` varchar(255) NOT NULL DEFAULT '', + `marital` varchar(255) NOT NULL DEFAULT '', `partner` text NOT NULL, `howlong` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `pronouns` char(191) NOT NULL DEFAULT '', - `sexual` char(191) NOT NULL DEFAULT '', - `politic` char(191) NOT NULL DEFAULT '', - `religion` char(191) NOT NULL DEFAULT '', + `pronouns` varchar(255) NOT NULL DEFAULT '', + `sexual` varchar(255) NOT NULL DEFAULT '', + `politic` varchar(255) NOT NULL DEFAULT '', + `religion` varchar(255) NOT NULL DEFAULT '', `keywords` text NOT NULL, `likes` text NOT NULL, `dislikes` text NOT NULL, `about` text NOT NULL, - `summary` char(191) NOT NULL DEFAULT '', + `summary` varchar(8192) NOT NULL DEFAULT '', `music` text NOT NULL, `book` text NOT NULL, `tv` text NOT NULL, @@ -1080,48 +1019,48 @@ CREATE TABLE IF NOT EXISTS `profile` ( `education` text NOT NULL, `contact` text NOT NULL, `channels` text NOT NULL, - `homepage` char(191) NOT NULL DEFAULT '', - `photo` char(191) NOT NULL DEFAULT '', - `thumb` char(191) NOT NULL DEFAULT '', + `homepage` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `thumb` varchar(255) NOT NULL DEFAULT '', `publish` tinyint(1) NOT NULL DEFAULT 0 , `profile_vcard` text NOT NULL, PRIMARY KEY (`id`), - UNIQUE KEY `guid` (`profile_guid`,`uid`), + UNIQUE KEY `guid` (`profile_guid`(191),`uid`), KEY `uid` (`uid`), - KEY `locality` (`locality`), - KEY `hometown` (`hometown`), - KEY `gender` (`gender`), - KEY `marital` (`marital`), - KEY `sexual` (`sexual`), + KEY `locality` (`locality`(191)), + KEY `hometown` (`hometown`(191)), + KEY `gender` (`gender`(191)), + KEY `marital` (`marital`(191)), + KEY `sexual` (`sexual`(191)), KEY `publish` (`publish`), KEY `aid` (`aid`), KEY `is_default` (`is_default`), KEY `hide_friends` (`hide_friends`), - KEY `postal_code` (`postal_code`), - KEY `country_name` (`country_name`), - KEY `profile_guid` (`profile_guid`) + KEY `postal_code` (`postal_code`(191)), + KEY `country_name` (`country_name`(191)), + KEY `profile_guid` (`profile_guid`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `register` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `hash` char(191) NOT NULL DEFAULT '', + `hash` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `uid` int(10) unsigned NOT NULL DEFAULT 0 , - `password` char(191) NOT NULL DEFAULT '', - `lang` char(16) NOT NULL DEFAULT '', + `password` varchar(255) NOT NULL DEFAULT '', + `lang` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), - KEY `hash` (`hash`), + KEY `hash` (`hash`(191)), KEY `created` (`created`), KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `session` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `sid` char(191) NOT NULL DEFAULT '', + `sid` varchar(255) NOT NULL DEFAULT '', `sess_data` text NOT NULL, `expire` bigint(20) unsigned NOT NULL DEFAULT 0 , PRIMARY KEY (`id`), - KEY `sid` (`sid`), + KEY `sid` (`sid`(191)), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1129,11 +1068,11 @@ CREATE TABLE IF NOT EXISTS `shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_type` int(11) NOT NULL DEFAULT 0 , `share_target` int(10) unsigned NOT NULL DEFAULT 0 , - `share_xchan` char(191) NOT NULL DEFAULT '', + `share_xchan` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`share_id`), KEY `share_type` (`share_type`), KEY `share_target` (`share_target`), - KEY `share_xchan` (`share_xchan`) + KEY `share_xchan` (`share_xchan`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `sign` ( @@ -1142,62 +1081,62 @@ CREATE TABLE IF NOT EXISTS `sign` ( `retract_iid` int(10) unsigned NOT NULL DEFAULT 0 , `signed_text` mediumtext NOT NULL, `signature` text NOT NULL, - `signer` char(191) NOT NULL DEFAULT '', + `signer` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `iid` (`iid`), KEY `retract_iid` (`retract_iid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `site` ( - `site_url` char(191) NOT NULL, + `site_url` varchar(255) NOT NULL, `site_access` int(11) NOT NULL DEFAULT 0 , `site_flags` int(11) NOT NULL DEFAULT 0 , `site_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `site_pull` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `site_sync` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - `site_directory` char(191) NOT NULL DEFAULT '', + `site_directory` varchar(255) NOT NULL DEFAULT '', `site_register` int(11) NOT NULL DEFAULT 0 , - `site_sellpage` char(191) NOT NULL DEFAULT '', - `site_location` char(191) NOT NULL DEFAULT '', - `site_realm` char(191) NOT NULL DEFAULT '', + `site_sellpage` varchar(255) NOT NULL DEFAULT '', + `site_location` varchar(255) NOT NULL DEFAULT '', + `site_realm` varchar(255) NOT NULL DEFAULT '', `site_valid` smallint NOT NULL DEFAULT 0 , `site_dead` smallint NOT NULL DEFAULT 0 , `site_type` smallint NOT NULL DEFAULT 0 , - `site_project` char(191) NOT NULL DEFAULT '', - `site_version` varchar(32) NOT NULL DEFAULT '', + `site_project` varchar(255) NOT NULL DEFAULT '', + `site_version` varchar(255) NOT NULL DEFAULT '', `site_crypto` text NOT NULL, PRIMARY KEY (`site_url`), KEY `site_flags` (`site_flags`), KEY `site_update` (`site_update`), - KEY `site_directory` (`site_directory`), + KEY `site_directory` (`site_directory`(191)), KEY `site_register` (`site_register`), KEY `site_access` (`site_access`), - KEY `site_sellpage` (`site_sellpage`), + KEY `site_sellpage` (`site_sellpage`(191)), KEY `site_pull` (`site_pull`), - KEY `site_realm` (`site_realm`), + KEY `site_realm` (`site_realm`(191)), KEY `site_valid` (`site_valid`), KEY `site_dead` (`site_dead`), KEY `site_type` (`site_type`), - KEY `site_project` (`site_project`) + KEY `site_project` (`site_project`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `source` ( `src_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `src_channel_id` int(10) unsigned NOT NULL DEFAULT 0 , - `src_channel_xchan` char(191) NOT NULL DEFAULT '', - `src_xchan` char(191) NOT NULL DEFAULT '', + `src_channel_xchan` varchar(255) NOT NULL DEFAULT '', + `src_xchan` varchar(255) NOT NULL DEFAULT '', `src_patt` mediumtext NOT NULL, `src_tag` mediumtext NOT NULL, PRIMARY KEY (`src_id`), KEY `src_channel_id` (`src_channel_id`), - KEY `src_channel_xchan` (`src_channel_xchan`), - KEY `src_xchan` (`src_xchan`) + KEY `src_channel_xchan` (`src_channel_xchan`(191)), + KEY `src_xchan` (`src_xchan`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `sys_perms` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cat` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, `public_perm` tinyint(1) unsigned NOT NULL DEFAULT 0 , PRIMARY KEY (`id`) @@ -1210,99 +1149,99 @@ CREATE TABLE IF NOT EXISTS `term` ( `oid` int(10) unsigned NOT NULL DEFAULT 0 , `otype` tinyint(3) unsigned NOT NULL DEFAULT 0 , `ttype` tinyint(3) unsigned NOT NULL DEFAULT 0 , - `term` char(191) NOT NULL DEFAULT '', - `url` char(191) NOT NULL DEFAULT '', - `imgurl` char(191) NOT NULL DEFAULT '', - `term_hash` char(191) NOT NULL DEFAULT '', - `parent_hash` char(191) NOT NULL DEFAULT '', + `term` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `imgurl` varchar(255) NOT NULL DEFAULT '', + `term_hash` varchar(255) NOT NULL DEFAULT '', + `parent_hash` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`tid`), KEY `oid` (`oid`), KEY `otype` (`otype`), KEY `ttype` (`ttype`), - KEY `term` (`term`), + KEY `term` (`term`(191)), KEY `uid` (`uid`), KEY `aid` (`aid`), - KEY `imgurl` (`imgurl`), - KEY `term_hash` (`term_hash`), - KEY `parent_hash` (`parent_hash`), + KEY `imgurl` (`imgurl`(191)), + KEY `term_hash` (`term_hash`(191)), + KEY `parent_hash` (`parent_hash`(191)), KEY `term_ttype` (`term`,`ttype`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `tokens` ( - `id` varchar(191) NOT NULL DEFAULT '', + `id` varchar(4096) NOT NULL DEFAULT '', `secret` text NOT NULL, - `client_id` varchar(191) NOT NULL DEFAULT '', + `client_id` varchar(255) NOT NULL DEFAULT '', `expires` bigint(20) unsigned NOT NULL DEFAULT 0 , - `auth_scope` varchar(512) NOT NULL DEFAULT '', + `auth_scope` varchar(1024) NOT NULL DEFAULT '', `uid` int(11) NOT NULL DEFAULT 0 , - PRIMARY KEY (`id`), - KEY `client_id` (`client_id`), + PRIMARY KEY (`id`(191)), + KEY `client_id` (`client_id`(191)), KEY `expires` (`expires`), KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `updates` ( `ud_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `ud_hash` char(191) NOT NULL DEFAULT '', - `ud_guid` char(191) NOT NULL DEFAULT '', + `ud_hash` varchar(255) NOT NULL DEFAULT '', + `ud_guid` varchar(255) NOT NULL DEFAULT '', `ud_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `ud_last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `ud_flags` int(11) NOT NULL DEFAULT 0 , - `ud_addr` char(191) NOT NULL DEFAULT '', + `ud_addr` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`ud_id`), KEY `ud_date` (`ud_date`), - KEY `ud_guid` (`ud_guid`), - KEY `ud_hash` (`ud_hash`), + KEY `ud_guid` (`ud_guid`(191)), + KEY `ud_hash` (`ud_hash`(191)), KEY `ud_flags` (`ud_flags`), - KEY `ud_addr` (`ud_addr`), + KEY `ud_addr` (`ud_addr`(191)), KEY `ud_last` (`ud_last`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `verify` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel` int(10) unsigned NOT NULL DEFAULT 0 , - `vtype` char(32) NOT NULL DEFAULT '', - `token` char(191) NOT NULL DEFAULT '', - `meta` char(191) NOT NULL DEFAULT '', + `vtype` varchar(255) NOT NULL DEFAULT '', + `token` varchar(255) NOT NULL DEFAULT '', + `meta` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`id`), KEY `channel` (`channel`), - KEY `vtype` (`vtype`), - KEY `token` (`token`), - KEY `meta` (`meta`), + KEY `vtype` (`vtype`(191)), + KEY `token` (`token`(191)), + KEY `meta` (`meta`(191)), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `vote` ( `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `vote_guid` varchar(191) NOT NULL, + `vote_guid` varchar(255) NOT NULL, `vote_poll` int(11) NOT NULL DEFAULT 0 , `vote_element` int(11) NOT NULL DEFAULT 0 , `vote_result` text NOT NULL, - `vote_xchan` char(191) NOT NULL DEFAULT '', + `vote_xchan` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`vote_id`), - UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`), - KEY `vote_guid` (`vote_guid`), + UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`(191)), + KEY `vote_guid` (`vote_guid`(191)), KEY `vote_poll` (`vote_poll`), KEY `vote_element` (`vote_element`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `xchan` ( - `xchan_hash` char(191) NOT NULL, - `xchan_guid` char(191) NOT NULL DEFAULT '', + `xchan_hash` varchar(255) NOT NULL, + `xchan_guid` varchar(255) NOT NULL DEFAULT '', `xchan_guid_sig` text NOT NULL, `xchan_pubkey` text NOT NULL, - `xchan_photo_mimetype` char(32) NOT NULL DEFAULT 'image/jpeg', - `xchan_photo_l` char(191) NOT NULL DEFAULT '', - `xchan_photo_m` char(191) NOT NULL DEFAULT '', - `xchan_photo_s` char(191) NOT NULL DEFAULT '', - `xchan_addr` char(191) NOT NULL DEFAULT '', - `xchan_url` char(191) NOT NULL DEFAULT '', - `xchan_connurl` char(191) NOT NULL DEFAULT '', - `xchan_follow` char(191) NOT NULL DEFAULT '', - `xchan_connpage` char(191) NOT NULL DEFAULT '', - `xchan_name` char(191) NOT NULL DEFAULT '', - `xchan_network` char(191) NOT NULL DEFAULT '', + `xchan_photo_mimetype` varchar(255) NOT NULL DEFAULT 'image/jpeg', + `xchan_photo_l` varchar(255) NOT NULL DEFAULT '', + `xchan_photo_m` varchar(255) NOT NULL DEFAULT '', + `xchan_photo_s` varchar(255) NOT NULL DEFAULT '', + `xchan_addr` varchar(255) NOT NULL DEFAULT '', + `xchan_url` varchar(255) NOT NULL DEFAULT '', + `xchan_connurl` varchar(255) NOT NULL DEFAULT '', + `xchan_follow` varchar(255) NOT NULL DEFAULT '', + `xchan_connpage` varchar(255) NOT NULL DEFAULT '', + `xchan_name` varchar(255) NOT NULL DEFAULT '', + `xchan_network` varchar(255) NOT NULL DEFAULT '', `xchan_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `xchan_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `xchan_photo_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -1314,14 +1253,14 @@ CREATE TABLE IF NOT EXISTS `xchan` ( `xchan_system` tinyint(1) NOT NULL DEFAULT 0 , `xchan_type` tinyint(1) NOT NULL DEFAULT 0 , `xchan_deleted` tinyint(1) NOT NULL DEFAULT 0 , - PRIMARY KEY (`xchan_hash`), - KEY `xchan_guid` (`xchan_guid`), - KEY `xchan_addr` (`xchan_addr`), - KEY `xchan_name` (`xchan_name`), - KEY `xchan_network` (`xchan_network`), - KEY `xchan_url` (`xchan_url`), - KEY `xchan_connurl` (`xchan_connurl`), - KEY `xchan_follow` (`xchan_follow`), + PRIMARY KEY (`xchan_hash`(191)), + KEY `xchan_guid` (`xchan_guid`(191)), + KEY `xchan_addr` (`xchan_addr`(191)), + KEY `xchan_name` (`xchan_name`(191)), + KEY `xchan_network` (`xchan_network`(191)), + KEY `xchan_url` (`xchan_url`(191)), + KEY `xchan_connurl` (`xchan_connurl`(191)), + KEY `xchan_follow` (`xchan_follow`(191(), KEY `xchan_hidden` (`xchan_hidden`), KEY `xchan_orphan` (`xchan_orphan`), KEY `xchan_censored` (`xchan_censored`), @@ -1335,50 +1274,50 @@ CREATE TABLE IF NOT EXISTS `xchan` ( CREATE TABLE IF NOT EXISTS `xchat` ( `xchat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xchat_url` char(191) NOT NULL DEFAULT '', - `xchat_desc` char(191) NOT NULL DEFAULT '', - `xchat_xchan` char(191) NOT NULL DEFAULT '', + `xchat_url` varchar(255) NOT NULL DEFAULT '', + `xchat_desc` varchar(255) NOT NULL DEFAULT '', + `xchat_xchan` varchar(255) NOT NULL DEFAULT '', `xchat_edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY (`xchat_id`), - KEY `xchat_url` (`xchat_url`), - KEY `xchat_desc` (`xchat_desc`), - KEY `xchat_xchan` (`xchat_xchan`), + KEY `xchat_url` (`xchat_url`(191)), + KEY `xchat_desc` (`xchat_desc`(191)), + KEY `xchat_xchan` (`xchat_xchan`(191)), KEY `xchat_edited` (`xchat_edited`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `xconfig` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xchan` char(191) NOT NULL DEFAULT '', - `cat` char(191) NOT NULL DEFAULT '', - `k` char(191) NOT NULL DEFAULT '', + `xchan` varchar(255) NOT NULL DEFAULT '', + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), - KEY `xchan` (`xchan`), - KEY `cat` (`cat`), - KEY `k` (`k`) + KEY `xchan` (`xchan`(191)), + KEY `cat` (`cat`(191)), + KEY `k` (`k`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `xign` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT 0 , - `xchan` char(191) NOT NULL DEFAULT '', + `xchan` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), - KEY `xchan` (`xchan`) + KEY `xchan` (`xchan`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `xlink` ( `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xlink_xchan` char(191) NOT NULL DEFAULT '', - `xlink_link` char(191) NOT NULL DEFAULT '', + `xlink_xchan` varchar(255) NOT NULL DEFAULT '', + `xlink_link` varchar(255) NOT NULL DEFAULT '', `xlink_rating` int(11) NOT NULL DEFAULT 0 , `xlink_rating_text` text NOT NULL, `xlink_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `xlink_static` tinyint(1) NOT NULL DEFAULT 0 , `xlink_sig` text NOT NULL, PRIMARY KEY (`xlink_id`), - KEY `xlink_xchan` (`xlink_xchan`), - KEY `xlink_link` (`xlink_link`), + KEY `xlink_xchan` (`xlink_xchan`(191)), + KEY `xlink_link` (`xlink_link`(191)), KEY `xlink_updated` (`xlink_updated`), KEY `xlink_rating` (`xlink_rating`), KEY `xlink_static` (`xlink_static`) @@ -1386,54 +1325,54 @@ CREATE TABLE IF NOT EXISTS `xlink` ( CREATE TABLE IF NOT EXISTS `xperm` ( `xp_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xp_client` varchar(20) NOT NULL DEFAULT '', + `xp_client` varchar(255) NOT NULL DEFAULT '', `xp_channel` int(10) unsigned NOT NULL DEFAULT 0 , - `xp_perm` varchar(64) NOT NULL DEFAULT '', + `xp_perm` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`xp_id`), - KEY `xp_client` (`xp_client`), + KEY `xp_client` (`xp_client`(191)), KEY `xp_channel` (`xp_channel`), - KEY `xp_perm` (`xp_perm`) + KEY `xp_perm` (`xp_perm`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `xprof` ( - `xprof_hash` char(191) NOT NULL, + `xprof_hash` varchar(255) NOT NULL, `xprof_age` tinyint(3) unsigned NOT NULL DEFAULT 0 , - `xprof_desc` char(191) NOT NULL DEFAULT '', - `xprof_dob` char(12) NOT NULL DEFAULT '', - `xprof_gender` char(191) NOT NULL DEFAULT '', - `xprof_marital` char(191) NOT NULL DEFAULT '', - `xprof_sexual` char(191) NOT NULL DEFAULT '', - `xprof_locale` char(191) NOT NULL DEFAULT '', - `xprof_region` char(191) NOT NULL DEFAULT '', - `xprof_postcode` char(32) NOT NULL DEFAULT '', - `xprof_country` char(191) NOT NULL DEFAULT '', + `xprof_desc` varchar(255) NOT NULL DEFAULT '', + `xprof_dob` varchar(255) NOT NULL DEFAULT '', + `xprof_gender` varchar(255) NOT NULL DEFAULT '', + `xprof_marital` varchar(255) NOT NULL DEFAULT '', + `xprof_sexual` varchar(255) NOT NULL DEFAULT '', + `xprof_locale` varchar(255) NOT NULL DEFAULT '', + `xprof_region` varchar(255) NOT NULL DEFAULT '', + `xprof_postcode` varchar(255) NOT NULL DEFAULT '', + `xprof_country` varchar(255) NOT NULL DEFAULT '', `xprof_keywords` text NOT NULL, `xprof_about` text NOT NULL, - `xprof_pronouns` char(191) NOT NULL DEFAULT '', - `xprof_homepage` char(191) NOT NULL DEFAULT '', - `xprof_hometown` char(191) NOT NULL DEFAULT '', - PRIMARY KEY (`xprof_hash`), - KEY `xprof_desc` (`xprof_desc`), - KEY `xprof_dob` (`xprof_dob`), - KEY `xprof_gender` (`xprof_gender`), - KEY `xprof_marital` (`xprof_marital`), - KEY `xprof_sexual` (`xprof_sexual`), - KEY `xprof_locale` (`xprof_locale`), - KEY `xprof_region` (`xprof_region`), - KEY `xprof_postcode` (`xprof_postcode`), - KEY `xprof_country` (`xprof_country`), + `xprof_pronouns` varchar(255) NOT NULL DEFAULT '', + `xprof_homepage` varchar(255) NOT NULL DEFAULT '', + `xprof_hometown` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`xprof_hash`(191)), + KEY `xprof_desc` (`xprof_desc`(191)), + KEY `xprof_dob` (`xprof_dob`(191)), + KEY `xprof_gender` (`xprof_gender`(191)), + KEY `xprof_marital` (`xprof_marital`(191)), + KEY `xprof_sexual` (`xprof_sexual`(191)), + KEY `xprof_locale` (`xprof_locale`(191)), + KEY `xprof_region` (`xprof_region`(191)), + KEY `xprof_postcode` (`xprof_postcode`(191)), + KEY `xprof_country` (`xprof_country`(191)), KEY `xprof_age` (`xprof_age`), - KEY `xprof_hometown` (`xprof_hometown`) + KEY `xprof_hometown` (`xprof_hometown`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `xtag` ( `xtag_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xtag_hash` char(191) NOT NULL DEFAULT '', - `xtag_term` char(191) NOT NULL DEFAULT '', + `xtag_hash` varchar(255) NOT NULL DEFAULT '', + `xtag_term` varchar(255) NOT NULL DEFAULT '', `xtag_flags` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`xtag_id`), - KEY `xtag_term` (`xtag_term`), - KEY `xtag_hash` (`xtag_hash`), + KEY `xtag_term` (`xtag_term`(191)), + KEY `xtag_hash` (`xtag_hash`(191)), KEY `xtag_flags` (`xtag_flags`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -1627,7 +1566,7 @@ CREATE TABLE if not exists oauth_access_tokens ( user_id int(10) unsigned NOT NULL DEFAULT 0, expires TIMESTAMP NOT NULL, scope VARCHAR(4000), - KEY `access_token` (`access_token`(192)) + KEY `access_token` (`access_token`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE if not exists oauth_authorization_codes ( @@ -1651,9 +1590,9 @@ CREATE TABLE if not exists oauth_refresh_tokens ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE if not exists oauth_scopes ( - scope VARCHAR(191) NOT NULL, + scope VARCHAR(255) NOT NULL, is_default TINYINT(1), - PRIMARY KEY (scope) + PRIMARY KEY (scope(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE if not exists oauth_jwt (