All URL fields are now binary and longer
This commit is contained in:
parent
dd59ad9032
commit
144547009b
33 changed files with 523 additions and 527 deletions
184
database.sql
184
database.sql
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 2022.09-dev (Giant Rhubarb)
|
-- Friendica 2022.09-rc (Giant Rhubarb)
|
||||||
-- DB_UPDATE_VERSION 1481
|
-- DB_UPDATE_VERSION 1482
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `gserver` (
|
CREATE TABLE IF NOT EXISTS `gserver` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nurl` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`version` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`version` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`site_name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`site_name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`info` text COMMENT '',
|
`info` text COMMENT '',
|
||||||
|
@ -22,8 +22,8 @@ CREATE TABLE IF NOT EXISTS `gserver` (
|
||||||
`local-posts` int unsigned COMMENT 'Number of local posts',
|
`local-posts` int unsigned COMMENT 'Number of local posts',
|
||||||
`local-comments` int unsigned COMMENT 'Number of local comments',
|
`local-comments` int unsigned COMMENT 'Number of local comments',
|
||||||
`directory-type` tinyint DEFAULT 0 COMMENT 'Type of directory service (Poco, Mastodon)',
|
`directory-type` tinyint DEFAULT 0 COMMENT 'Type of directory service (Poco, Mastodon)',
|
||||||
`poco` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`poco` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`noscrape` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`noscrape` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`protocol` tinyint unsigned COMMENT 'The protocol of the server',
|
`protocol` tinyint unsigned COMMENT 'The protocol of the server',
|
||||||
`platform` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`platform` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -104,7 +104,7 @@ CREATE TABLE IF NOT EXISTS `user` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `item-uri` (
|
CREATE TABLE IF NOT EXISTS `item-uri` (
|
||||||
`id` int unsigned NOT NULL auto_increment,
|
`id` int unsigned NOT NULL auto_increment,
|
||||||
`uri` varbinary(255) NOT NULL COMMENT 'URI of an item',
|
`uri` varbinary(383) NOT NULL COMMENT 'URI of an item',
|
||||||
`guid` varbinary(255) COMMENT 'A unique identifier for an item',
|
`guid` varbinary(255) COMMENT 'A unique identifier for an item',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `uri` (`uri`),
|
UNIQUE INDEX `uri` (`uri`),
|
||||||
|
@ -127,19 +127,19 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`keywords` text COMMENT 'public keywords (interests) of the contact',
|
`keywords` text COMMENT 'public keywords (interests) of the contact',
|
||||||
`xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
|
`xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
|
||||||
`matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
|
`matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
|
||||||
`avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`avatar` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`header` varchar(255) COMMENT 'Header picture',
|
`header` varbinary(383) COMMENT 'Header picture',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nurl` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the contact url',
|
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the contact url',
|
||||||
`addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`alias` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`pubkey` text COMMENT 'RSA public key 4096 bit',
|
`pubkey` text COMMENT 'RSA public key 4096 bit',
|
||||||
`prvkey` text COMMENT 'RSA private key 4096 bit',
|
`prvkey` text COMMENT 'RSA private key 4096 bit',
|
||||||
`batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`batch` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`notify` varchar(255) COMMENT '',
|
`notify` varbinary(383) COMMENT '',
|
||||||
`poll` varchar(255) COMMENT '',
|
`poll` varbinary(383) COMMENT '',
|
||||||
`subscribe` varchar(255) COMMENT '',
|
`subscribe` varbinary(383) COMMENT '',
|
||||||
`last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last try to update the contact info',
|
`last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last try to update the contact info',
|
||||||
`next-update` datetime COMMENT 'Next connection request',
|
`next-update` datetime COMMENT 'Next connection request',
|
||||||
`success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful contact update',
|
`success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful contact update',
|
||||||
|
@ -157,7 +157,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`archive` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`archive` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`unsearchable` boolean NOT NULL DEFAULT '0' COMMENT 'Contact prefers to not be searchable',
|
`unsearchable` boolean NOT NULL DEFAULT '0' COMMENT 'Contact prefers to not be searchable',
|
||||||
`sensitive` boolean NOT NULL DEFAULT '0' COMMENT 'Contact posts sensitive content',
|
`sensitive` boolean NOT NULL DEFAULT '0' COMMENT 'Contact posts sensitive content',
|
||||||
`baseurl` varchar(255) DEFAULT '' COMMENT 'baseurl of the contact',
|
`baseurl` varbinary(383) DEFAULT '' COMMENT 'baseurl of the contact',
|
||||||
`gsid` int unsigned COMMENT 'Global Server ID',
|
`gsid` int unsigned COMMENT 'Global Server ID',
|
||||||
`bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
|
`bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
|
||||||
`reason` text COMMENT '',
|
`reason` text COMMENT '',
|
||||||
|
@ -166,7 +166,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`rel` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'The kind of the relation between the user and the contact',
|
`rel` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'The kind of the relation between the user and the contact',
|
||||||
`protocol` char(4) NOT NULL DEFAULT '' COMMENT 'Protocol of the contact',
|
`protocol` char(4) NOT NULL DEFAULT '' COMMENT 'Protocol of the contact',
|
||||||
`subhub` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`subhub` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`hub-verify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`hub-verify` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`rating` tinyint NOT NULL DEFAULT 0 COMMENT 'Automatically detected feed poll frequency',
|
`rating` tinyint NOT NULL DEFAULT 0 COMMENT 'Automatically detected feed poll frequency',
|
||||||
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Feed poll priority',
|
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Feed poll priority',
|
||||||
`attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -177,15 +177,15 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`fetch_further_information` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`fetch_further_information` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`ffi_keyword_denylist` text COMMENT '',
|
`ffi_keyword_denylist` text COMMENT '',
|
||||||
`photo` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
|
`photo` varbinary(383) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
|
||||||
`thumb` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)',
|
`thumb` varbinary(383) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)',
|
||||||
`micro` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (micro size)',
|
`micro` varbinary(383) DEFAULT '' COMMENT 'Link to the profile photo (micro size)',
|
||||||
`name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`request` varchar(255) COMMENT '',
|
`request` varbinary(383) COMMENT '',
|
||||||
`confirm` varchar(255) COMMENT '',
|
`confirm` varbinary(383) COMMENT '',
|
||||||
`poco` varchar(255) COMMENT '',
|
`poco` varbinary(383) COMMENT '',
|
||||||
`writable` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`writable` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a forum. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = false instead',
|
`forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a forum. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = false instead',
|
||||||
`prv` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a private group. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = true instead',
|
`prv` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a private group. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = true instead',
|
||||||
|
@ -193,8 +193,8 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`site-pubkey` text COMMENT 'Deprecated',
|
`site-pubkey` text COMMENT 'Deprecated',
|
||||||
`gender` varchar(32) NOT NULL DEFAULT '' COMMENT 'Deprecated',
|
`gender` varchar(32) NOT NULL DEFAULT '' COMMENT 'Deprecated',
|
||||||
`duplex` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
`duplex` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
||||||
`issued-id` varchar(255) NOT NULL DEFAULT '' COMMENT 'Deprecated',
|
`issued-id` varbinary(383) NOT NULL DEFAULT '' COMMENT 'Deprecated',
|
||||||
`dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT 'Deprecated',
|
`dfrn-id` varbinary(383) NOT NULL DEFAULT '' COMMENT 'Deprecated',
|
||||||
`aes_allow` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
`aes_allow` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
||||||
`ret-aes` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
`ret-aes` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
||||||
`usehub` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
`usehub` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
|
||||||
|
@ -235,7 +235,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
CREATE TABLE IF NOT EXISTS `tag` (
|
CREATE TABLE IF NOT EXISTS `tag` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`name` varchar(96) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(96) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`type` tinyint unsigned COMMENT 'Type of the tag (Unknown, General Collection, Follower Collection or Account)',
|
`type` tinyint unsigned COMMENT 'Type of the tag (Unknown, General Collection, Follower Collection or Account)',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `type_name_url` (`name`,`url`),
|
UNIQUE INDEX `type_name_url` (`name`,`url`),
|
||||||
|
@ -329,17 +329,17 @@ CREATE TABLE IF NOT EXISTS `addon` (
|
||||||
-- TABLE apcontact
|
-- TABLE apcontact
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `apcontact` (
|
CREATE TABLE IF NOT EXISTS `apcontact` (
|
||||||
`url` varbinary(255) NOT NULL COMMENT 'URL of the contact',
|
`url` varbinary(383) NOT NULL COMMENT 'URL of the contact',
|
||||||
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the apcontact url',
|
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the apcontact url',
|
||||||
`uuid` varchar(255) COMMENT '',
|
`uuid` varbinary(255) COMMENT '',
|
||||||
`type` varchar(20) NOT NULL COMMENT '',
|
`type` varchar(20) NOT NULL COMMENT '',
|
||||||
`following` varchar(255) COMMENT '',
|
`following` varbinary(383) COMMENT '',
|
||||||
`followers` varchar(255) COMMENT '',
|
`followers` varbinary(383) COMMENT '',
|
||||||
`inbox` varchar(255) NOT NULL COMMENT '',
|
`inbox` varbinary(383) NOT NULL COMMENT '',
|
||||||
`outbox` varchar(255) COMMENT '',
|
`outbox` varbinary(383) COMMENT '',
|
||||||
`sharedinbox` varchar(255) COMMENT '',
|
`sharedinbox` varbinary(383) COMMENT '',
|
||||||
`featured` varchar(255) COMMENT 'Address for the collection of featured posts',
|
`featured` varbinary(383) COMMENT 'Address for the collection of featured posts',
|
||||||
`featured-tags` varchar(255) COMMENT 'Address for the collection of featured tags',
|
`featured-tags` varbinary(383) COMMENT 'Address for the collection of featured tags',
|
||||||
`manually-approve` boolean COMMENT '',
|
`manually-approve` boolean COMMENT '',
|
||||||
`discoverable` boolean COMMENT 'Mastodon extension: true if profile is published in their directory',
|
`discoverable` boolean COMMENT 'Mastodon extension: true if profile is published in their directory',
|
||||||
`suspended` boolean COMMENT 'Mastodon extension: true if profile is suspended',
|
`suspended` boolean COMMENT 'Mastodon extension: true if profile is suspended',
|
||||||
|
@ -348,13 +348,13 @@ CREATE TABLE IF NOT EXISTS `apcontact` (
|
||||||
`about` text COMMENT '',
|
`about` text COMMENT '',
|
||||||
`xmpp` varchar(255) COMMENT 'XMPP address',
|
`xmpp` varchar(255) COMMENT 'XMPP address',
|
||||||
`matrix` varchar(255) COMMENT 'Matrix address',
|
`matrix` varchar(255) COMMENT 'Matrix address',
|
||||||
`photo` varchar(255) COMMENT '',
|
`photo` varbinary(383) COMMENT '',
|
||||||
`header` varchar(255) COMMENT 'Header picture',
|
`header` varbinary(383) COMMENT 'Header picture',
|
||||||
`addr` varchar(255) COMMENT '',
|
`addr` varchar(255) COMMENT '',
|
||||||
`alias` varchar(255) COMMENT '',
|
`alias` varbinary(383) COMMENT '',
|
||||||
`pubkey` text COMMENT '',
|
`pubkey` text COMMENT '',
|
||||||
`subscribe` varchar(255) COMMENT '',
|
`subscribe` varbinary(383) COMMENT '',
|
||||||
`baseurl` varchar(255) COMMENT 'baseurl of the ap contact',
|
`baseurl` varbinary(383) COMMENT 'baseurl of the ap contact',
|
||||||
`gsid` int unsigned COMMENT 'Global Server ID',
|
`gsid` int unsigned COMMENT 'Global Server ID',
|
||||||
`generator` varchar(255) COMMENT 'Name of the contact\'s system',
|
`generator` varchar(255) COMMENT 'Name of the contact\'s system',
|
||||||
`following_count` int unsigned DEFAULT 0 COMMENT 'Number of following contacts',
|
`following_count` int unsigned DEFAULT 0 COMMENT 'Number of following contacts',
|
||||||
|
@ -381,8 +381,8 @@ CREATE TABLE IF NOT EXISTS `application` (
|
||||||
`client_id` varchar(64) NOT NULL COMMENT '',
|
`client_id` varchar(64) NOT NULL COMMENT '',
|
||||||
`client_secret` varchar(64) NOT NULL COMMENT '',
|
`client_secret` varchar(64) NOT NULL COMMENT '',
|
||||||
`name` varchar(255) NOT NULL COMMENT '',
|
`name` varchar(255) NOT NULL COMMENT '',
|
||||||
`redirect_uri` varchar(255) NOT NULL COMMENT '',
|
`redirect_uri` varbinary(383) NOT NULL COMMENT '',
|
||||||
`website` varchar(255) COMMENT '',
|
`website` varbinary(383) COMMENT '',
|
||||||
`scopes` varchar(255) COMMENT '',
|
`scopes` varchar(255) COMMENT '',
|
||||||
`read` boolean COMMENT 'Read scope',
|
`read` boolean COMMENT 'Read scope',
|
||||||
`write` boolean COMMENT 'Write scope',
|
`write` boolean COMMENT 'Write scope',
|
||||||
|
@ -399,7 +399,7 @@ CREATE TABLE IF NOT EXISTS `application-marker` (
|
||||||
`application-id` int unsigned NOT NULL COMMENT '',
|
`application-id` int unsigned NOT NULL COMMENT '',
|
||||||
`uid` mediumint unsigned NOT NULL COMMENT 'Owner User id',
|
`uid` mediumint unsigned NOT NULL COMMENT 'Owner User id',
|
||||||
`timeline` varchar(64) NOT NULL COMMENT 'Marker (home, notifications)',
|
`timeline` varchar(64) NOT NULL COMMENT 'Marker (home, notifications)',
|
||||||
`last_read_id` varchar(255) COMMENT 'Marker id for the timeline',
|
`last_read_id` varbinary(383) COMMENT 'Marker id for the timeline',
|
||||||
`version` smallint unsigned COMMENT 'Version number',
|
`version` smallint unsigned COMMENT 'Version number',
|
||||||
`updated_at` datetime COMMENT 'creation time',
|
`updated_at` datetime COMMENT 'creation time',
|
||||||
PRIMARY KEY(`application-id`,`uid`,`timeline`),
|
PRIMARY KEY(`application-id`,`uid`,`timeline`),
|
||||||
|
@ -496,7 +496,7 @@ CREATE TABLE IF NOT EXISTS `contact-relation` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `conv` (
|
CREATE TABLE IF NOT EXISTS `conv` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this conversation',
|
`guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this conversation',
|
||||||
`recips` text COMMENT 'sender_handle;recipient_handle',
|
`recips` text COMMENT 'sender_handle;recipient_handle',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
||||||
`creator` varchar(255) NOT NULL DEFAULT '' COMMENT 'handle of creator',
|
`creator` varchar(255) NOT NULL DEFAULT '' COMMENT 'handle of creator',
|
||||||
|
@ -538,7 +538,7 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `delayed-post` (
|
CREATE TABLE IF NOT EXISTS `delayed-post` (
|
||||||
`id` int unsigned NOT NULL auto_increment,
|
`id` int unsigned NOT NULL auto_increment,
|
||||||
`uri` varchar(255) COMMENT 'URI of the post that will be distributed later',
|
`uri` varbinary(383) COMMENT 'URI of the post that will be distributed later',
|
||||||
`uid` mediumint unsigned COMMENT 'Owner User id',
|
`uid` mediumint unsigned COMMENT 'Owner User id',
|
||||||
`delayed` datetime COMMENT 'delay time',
|
`delayed` datetime COMMENT 'delay time',
|
||||||
`wid` int unsigned COMMENT 'Workerqueue id',
|
`wid` int unsigned COMMENT 'Workerqueue id',
|
||||||
|
@ -563,7 +563,7 @@ CREATE TABLE IF NOT EXISTS `diaspora-interaction` (
|
||||||
-- TABLE endpoint
|
-- TABLE endpoint
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `endpoint` (
|
CREATE TABLE IF NOT EXISTS `endpoint` (
|
||||||
`url` varbinary(255) NOT NULL COMMENT 'URL of the contact',
|
`url` varbinary(383) NOT NULL COMMENT 'URL of the contact',
|
||||||
`type` varchar(20) NOT NULL COMMENT '',
|
`type` varchar(20) NOT NULL COMMENT '',
|
||||||
`owner-uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the apcontact url',
|
`owner-uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the apcontact url',
|
||||||
PRIMARY KEY(`url`),
|
PRIMARY KEY(`url`),
|
||||||
|
@ -576,10 +576,10 @@ CREATE TABLE IF NOT EXISTS `endpoint` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `event` (
|
CREATE TABLE IF NOT EXISTS `event` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
||||||
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact_id (ID of the contact in contact table)',
|
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact_id (ID of the contact in contact table)',
|
||||||
`uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`uri` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the event uri',
|
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the event uri',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
|
||||||
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
|
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
|
||||||
|
@ -609,21 +609,21 @@ CREATE TABLE IF NOT EXISTS `event` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `fcontact` (
|
CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'unique id',
|
`guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'unique id',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the fcontact url',
|
`uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the fcontact url',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`request` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`batch` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`notify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`notify` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`poll` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`poll` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`confirm` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`confirm` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`alias` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`pubkey` text COMMENT '',
|
`pubkey` text COMMENT '',
|
||||||
`updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interactes with',
|
`interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interactes with',
|
||||||
|
@ -641,7 +641,7 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `fetch-entry` (
|
CREATE TABLE IF NOT EXISTS `fetch-entry` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`url` varbinary(255) COMMENT 'url that awaiting to be fetched',
|
`url` varbinary(383) COMMENT 'url that awaiting to be fetched',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of the fetch request',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of the fetch request',
|
||||||
`wid` int unsigned COMMENT 'Workerqueue id',
|
`wid` int unsigned COMMENT 'Workerqueue id',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
@ -659,9 +659,9 @@ CREATE TABLE IF NOT EXISTS `fsuggest` (
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`request` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`note` text COMMENT '',
|
`note` text COMMENT '',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
@ -732,10 +732,10 @@ CREATE TABLE IF NOT EXISTS `hook` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `inbox-entry` (
|
CREATE TABLE IF NOT EXISTS `inbox-entry` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`activity-id` varbinary(255) COMMENT 'id of the incoming activity',
|
`activity-id` varbinary(383) COMMENT 'id of the incoming activity',
|
||||||
`object-id` varbinary(255) COMMENT '',
|
`object-id` varbinary(383) COMMENT '',
|
||||||
`in-reply-to-id` varbinary(255) COMMENT '',
|
`in-reply-to-id` varbinary(383) COMMENT '',
|
||||||
`conversation` varbinary(255) COMMENT '',
|
`conversation` varbinary(383) COMMENT '',
|
||||||
`type` varchar(64) COMMENT 'Type of the activity',
|
`type` varchar(64) COMMENT 'Type of the activity',
|
||||||
`object-type` varchar(64) COMMENT 'Type of the object activity',
|
`object-type` varchar(64) COMMENT 'Type of the object activity',
|
||||||
`object-object-type` varchar(64) COMMENT 'Type of the object\'s object activity',
|
`object-object-type` varchar(64) COMMENT 'Type of the object\'s object activity',
|
||||||
|
@ -769,7 +769,7 @@ CREATE TABLE IF NOT EXISTS `inbox-entry-receiver` (
|
||||||
-- TABLE inbox-status
|
-- TABLE inbox-status
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `inbox-status` (
|
CREATE TABLE IF NOT EXISTS `inbox-status` (
|
||||||
`url` varbinary(255) NOT NULL COMMENT 'URL of the inbox',
|
`url` varbinary(383) NOT NULL COMMENT 'URL of the inbox',
|
||||||
`uri-id` int unsigned COMMENT 'Item-uri id of inbox url',
|
`uri-id` int unsigned COMMENT 'Item-uri id of inbox url',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of this entry',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of this entry',
|
||||||
`success` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful delivery',
|
`success` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful delivery',
|
||||||
|
@ -794,7 +794,7 @@ CREATE TABLE IF NOT EXISTS `intro` (
|
||||||
`knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`duplex` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
|
`duplex` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
|
||||||
`note` text COMMENT '',
|
`note` text COMMENT '',
|
||||||
`hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`hash` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`datetime` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`datetime` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`blocked` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
|
`blocked` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
|
||||||
`ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -826,11 +826,11 @@ CREATE TABLE IF NOT EXISTS `locks` (
|
||||||
CREATE TABLE IF NOT EXISTS `mail` (
|
CREATE TABLE IF NOT EXISTS `mail` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
|
`guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
|
||||||
`from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
|
`from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
|
||||||
`from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
|
`from-photo` varbinary(383) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
|
||||||
`from-url` varchar(255) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender',
|
`from-url` varbinary(383) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender',
|
||||||
`contact-id` varchar(255) COMMENT 'contact.id',
|
`contact-id` varbinary(255) COMMENT 'contact.id',
|
||||||
`author-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the author of the mail',
|
`author-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the author of the mail',
|
||||||
`convid` int unsigned COMMENT 'conv.id',
|
`convid` int unsigned COMMENT 'conv.id',
|
||||||
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -839,11 +839,11 @@ CREATE TABLE IF NOT EXISTS `mail` (
|
||||||
`reply` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`reply` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`replied` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`replied` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`unknown` boolean NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1',
|
`unknown` boolean NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1',
|
||||||
`uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`uri` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uri-id` int unsigned COMMENT 'Item-uri id of the related mail',
|
`uri-id` int unsigned COMMENT 'Item-uri id of the related mail',
|
||||||
`parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`parent-uri` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related mail',
|
`parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related mail',
|
||||||
`thr-parent` varchar(255) COMMENT '',
|
`thr-parent` varbinary(383) COMMENT '',
|
||||||
`thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
|
`thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
@ -935,12 +935,12 @@ CREATE TABLE IF NOT EXISTS `notify` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`msg` mediumtext COMMENT '',
|
`msg` mediumtext COMMENT '',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
|
||||||
`link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`link` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`iid` int unsigned COMMENT '',
|
`iid` int unsigned COMMENT '',
|
||||||
`parent` int unsigned COMMENT '',
|
`parent` int unsigned COMMENT '',
|
||||||
`uri-id` int unsigned COMMENT 'Item-uri id of the related post',
|
`uri-id` int unsigned COMMENT 'Item-uri id of the related post',
|
||||||
|
@ -984,7 +984,7 @@ CREATE TABLE IF NOT EXISTS `notify-threads` (
|
||||||
-- TABLE oembed
|
-- TABLE oembed
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `oembed` (
|
CREATE TABLE IF NOT EXISTS `oembed` (
|
||||||
`url` varbinary(255) NOT NULL COMMENT 'page url',
|
`url` varbinary(383) NOT NULL COMMENT 'page url',
|
||||||
`maxwidth` mediumint unsigned NOT NULL COMMENT 'Maximum width passed to Oembed',
|
`maxwidth` mediumint unsigned NOT NULL COMMENT 'Maximum width passed to Oembed',
|
||||||
`content` mediumtext COMMENT 'OEmbed data of the page',
|
`content` mediumtext COMMENT 'OEmbed data of the page',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
|
||||||
|
@ -1182,7 +1182,7 @@ CREATE TABLE IF NOT EXISTS `post-content` (
|
||||||
`target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
|
`target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
|
||||||
`target` text COMMENT 'JSON encoded target structure if used',
|
`target` text COMMENT 'JSON encoded target structure if used',
|
||||||
`resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type',
|
`resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type',
|
||||||
`plink` varchar(255) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
|
`plink` varbinary(383) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
|
||||||
PRIMARY KEY(`uri-id`),
|
PRIMARY KEY(`uri-id`),
|
||||||
INDEX `plink` (`plink`(191)),
|
INDEX `plink` (`plink`(191)),
|
||||||
INDEX `resource-id` (`resource-id`),
|
INDEX `resource-id` (`resource-id`),
|
||||||
|
@ -1249,7 +1249,7 @@ CREATE TABLE IF NOT EXISTS `post-history` (
|
||||||
`target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
|
`target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
|
||||||
`target` text COMMENT 'JSON encoded target structure if used',
|
`target` text COMMENT 'JSON encoded target structure if used',
|
||||||
`resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type',
|
`resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type',
|
||||||
`plink` varchar(255) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
|
`plink` varbinary(383) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
|
||||||
PRIMARY KEY(`uri-id`,`edited`),
|
PRIMARY KEY(`uri-id`,`edited`),
|
||||||
FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
|
FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Post history';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Post history';
|
||||||
|
@ -1284,12 +1284,12 @@ CREATE TABLE IF NOT EXISTS `post-media` (
|
||||||
`preview-width` smallint unsigned COMMENT 'Width of the preview picture',
|
`preview-width` smallint unsigned COMMENT 'Width of the preview picture',
|
||||||
`description` text COMMENT '',
|
`description` text COMMENT '',
|
||||||
`name` varchar(255) COMMENT 'Name of the media',
|
`name` varchar(255) COMMENT 'Name of the media',
|
||||||
`author-url` varbinary(255) COMMENT 'URL of the author of the media',
|
`author-url` varbinary(383) COMMENT 'URL of the author of the media',
|
||||||
`author-name` varchar(255) COMMENT 'Name of the author of the media',
|
`author-name` varchar(255) COMMENT 'Name of the author of the media',
|
||||||
`author-image` varbinary(255) COMMENT 'Image of the author of the media',
|
`author-image` varbinary(383) COMMENT 'Image of the author of the media',
|
||||||
`publisher-url` varbinary(255) COMMENT 'URL of the publisher of the media',
|
`publisher-url` varbinary(383) COMMENT 'URL of the publisher of the media',
|
||||||
`publisher-name` varchar(255) COMMENT 'Name of the publisher of the media',
|
`publisher-name` varchar(255) COMMENT 'Name of the publisher of the media',
|
||||||
`publisher-image` varbinary(255) COMMENT 'Image of the publisher of the media',
|
`publisher-image` varbinary(383) COMMENT 'Image of the publisher of the media',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `uri-id-url` (`uri-id`,`url`(512)),
|
UNIQUE INDEX `uri-id-url` (`uri-id`,`url`(512)),
|
||||||
INDEX `uri-id-id` (`uri-id`,`id`),
|
INDEX `uri-id-id` (`uri-id`,`id`),
|
||||||
|
@ -1558,8 +1558,8 @@ CREATE TABLE IF NOT EXISTS `profile` (
|
||||||
`homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
|
`xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
|
||||||
`matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
|
`matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
|
||||||
`photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`thumb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`thumb` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
|
`publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
|
||||||
`net-publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish profile in global directory',
|
`net-publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish profile in global directory',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
@ -1594,7 +1594,7 @@ CREATE TABLE IF NOT EXISTS `profile_field` (
|
||||||
CREATE TABLE IF NOT EXISTS `push_subscriber` (
|
CREATE TABLE IF NOT EXISTS `push_subscriber` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`callback_url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`callback_url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`topic` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`topic` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`push` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
|
`push` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
|
||||||
|
@ -1613,7 +1613,7 @@ CREATE TABLE IF NOT EXISTS `push_subscriber` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `register` (
|
CREATE TABLE IF NOT EXISTS `register` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||||
`hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`hash` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -1713,7 +1713,7 @@ CREATE TABLE IF NOT EXISTS `user-contact` (
|
||||||
`fetch_further_information` tinyint unsigned COMMENT '',
|
`fetch_further_information` tinyint unsigned COMMENT '',
|
||||||
`ffi_keyword_denylist` text COMMENT '',
|
`ffi_keyword_denylist` text COMMENT '',
|
||||||
`subhub` boolean COMMENT '',
|
`subhub` boolean COMMENT '',
|
||||||
`hub-verify` varchar(255) COMMENT '',
|
`hub-verify` varbinary(383) COMMENT '',
|
||||||
`protocol` char(4) COMMENT 'Protocol of the contact',
|
`protocol` char(4) COMMENT 'Protocol of the contact',
|
||||||
`rating` tinyint COMMENT 'Automatically detected feed poll frequency',
|
`rating` tinyint COMMENT 'Automatically detected feed poll frequency',
|
||||||
`priority` tinyint unsigned COMMENT 'Feed poll priority',
|
`priority` tinyint unsigned COMMENT 'Feed poll priority',
|
||||||
|
@ -1729,7 +1729,7 @@ CREATE TABLE IF NOT EXISTS `user-contact` (
|
||||||
-- TABLE arrived-activity
|
-- TABLE arrived-activity
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `arrived-activity` (
|
CREATE TABLE IF NOT EXISTS `arrived-activity` (
|
||||||
`object-id` varbinary(255) NOT NULL COMMENT 'object id of the incoming activity',
|
`object-id` varbinary(383) NOT NULL COMMENT 'object id of the incoming activity',
|
||||||
`received` datetime COMMENT 'Receiving date',
|
`received` datetime COMMENT 'Receiving date',
|
||||||
PRIMARY KEY(`object-id`)
|
PRIMARY KEY(`object-id`)
|
||||||
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of arrived activities';
|
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of arrived activities';
|
||||||
|
@ -1738,7 +1738,7 @@ CREATE TABLE IF NOT EXISTS `arrived-activity` (
|
||||||
-- TABLE fetched-activity
|
-- TABLE fetched-activity
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `fetched-activity` (
|
CREATE TABLE IF NOT EXISTS `fetched-activity` (
|
||||||
`object-id` varbinary(255) NOT NULL COMMENT 'object id of fetched activity',
|
`object-id` varbinary(383) NOT NULL COMMENT 'object id of fetched activity',
|
||||||
`received` datetime COMMENT 'Receiving date',
|
`received` datetime COMMENT 'Receiving date',
|
||||||
PRIMARY KEY(`object-id`)
|
PRIMARY KEY(`object-id`)
|
||||||
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of fetched activities';
|
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of fetched activities';
|
||||||
|
|
|
@ -8,17 +8,17 @@ Fields
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ---------------- | ------------------------------------------------------------------- | -------------- | ---- | --- | ------------------- | ----- |
|
| ---------------- | ------------------------------------------------------------------- | -------------- | ---- | --- | ------------------- | ----- |
|
||||||
| url | URL of the contact | varbinary(255) | NO | PRI | NULL | |
|
| url | URL of the contact | varbinary(383) | NO | PRI | NULL | |
|
||||||
| uri-id | Id of the item-uri table entry that contains the apcontact url | int unsigned | YES | | NULL | |
|
| uri-id | Id of the item-uri table entry that contains the apcontact url | int unsigned | YES | | NULL | |
|
||||||
| uuid | | varchar(255) | YES | | NULL | |
|
| uuid | | varbinary(255) | YES | | NULL | |
|
||||||
| type | | varchar(20) | NO | | NULL | |
|
| type | | varchar(20) | NO | | NULL | |
|
||||||
| following | | varchar(255) | YES | | NULL | |
|
| following | | varbinary(383) | YES | | NULL | |
|
||||||
| followers | | varchar(255) | YES | | NULL | |
|
| followers | | varbinary(383) | YES | | NULL | |
|
||||||
| inbox | | varchar(255) | NO | | NULL | |
|
| inbox | | varbinary(383) | NO | | NULL | |
|
||||||
| outbox | | varchar(255) | YES | | NULL | |
|
| outbox | | varbinary(383) | YES | | NULL | |
|
||||||
| sharedinbox | | varchar(255) | YES | | NULL | |
|
| sharedinbox | | varbinary(383) | YES | | NULL | |
|
||||||
| featured | Address for the collection of featured posts | varchar(255) | YES | | NULL | |
|
| featured | Address for the collection of featured posts | varbinary(383) | YES | | NULL | |
|
||||||
| featured-tags | Address for the collection of featured tags | varchar(255) | YES | | NULL | |
|
| featured-tags | Address for the collection of featured tags | varbinary(383) | YES | | NULL | |
|
||||||
| manually-approve | | boolean | YES | | NULL | |
|
| manually-approve | | boolean | YES | | NULL | |
|
||||||
| discoverable | Mastodon extension: true if profile is published in their directory | boolean | YES | | NULL | |
|
| discoverable | Mastodon extension: true if profile is published in their directory | boolean | YES | | NULL | |
|
||||||
| suspended | Mastodon extension: true if profile is suspended | boolean | YES | | NULL | |
|
| suspended | Mastodon extension: true if profile is suspended | boolean | YES | | NULL | |
|
||||||
|
@ -27,13 +27,13 @@ Fields
|
||||||
| about | | text | YES | | NULL | |
|
| about | | text | YES | | NULL | |
|
||||||
| xmpp | XMPP address | varchar(255) | YES | | NULL | |
|
| xmpp | XMPP address | varchar(255) | YES | | NULL | |
|
||||||
| matrix | Matrix address | varchar(255) | YES | | NULL | |
|
| matrix | Matrix address | varchar(255) | YES | | NULL | |
|
||||||
| photo | | varchar(255) | YES | | NULL | |
|
| photo | | varbinary(383) | YES | | NULL | |
|
||||||
| header | Header picture | varchar(255) | YES | | NULL | |
|
| header | Header picture | varbinary(383) | YES | | NULL | |
|
||||||
| addr | | varchar(255) | YES | | NULL | |
|
| addr | | varchar(255) | YES | | NULL | |
|
||||||
| alias | | varchar(255) | YES | | NULL | |
|
| alias | | varbinary(383) | YES | | NULL | |
|
||||||
| pubkey | | text | YES | | NULL | |
|
| pubkey | | text | YES | | NULL | |
|
||||||
| subscribe | | varchar(255) | YES | | NULL | |
|
| subscribe | | varbinary(383) | YES | | NULL | |
|
||||||
| baseurl | baseurl of the ap contact | varchar(255) | YES | | NULL | |
|
| baseurl | baseurl of the ap contact | varbinary(383) | YES | | NULL | |
|
||||||
| gsid | Global Server ID | int unsigned | YES | | NULL | |
|
| gsid | Global Server ID | int unsigned | YES | | NULL | |
|
||||||
| generator | Name of the contact's system | varchar(255) | YES | | NULL | |
|
| generator | Name of the contact's system | varchar(255) | YES | | NULL | |
|
||||||
| following_count | Number of following contacts | int unsigned | YES | | 0 | |
|
| following_count | Number of following contacts | int unsigned | YES | | 0 | |
|
||||||
|
|
|
@ -11,7 +11,7 @@ Fields
|
||||||
| application-id | | int unsigned | NO | PRI | NULL | |
|
| application-id | | int unsigned | NO | PRI | NULL | |
|
||||||
| uid | Owner User id | mediumint unsigned | NO | PRI | NULL | |
|
| uid | Owner User id | mediumint unsigned | NO | PRI | NULL | |
|
||||||
| timeline | Marker (home, notifications) | varchar(64) | NO | PRI | NULL | |
|
| timeline | Marker (home, notifications) | varchar(64) | NO | PRI | NULL | |
|
||||||
| last_read_id | Marker id for the timeline | varchar(255) | YES | | NULL | |
|
| last_read_id | Marker id for the timeline | varbinary(383) | YES | | NULL | |
|
||||||
| version | Version number | smallint unsigned | YES | | NULL | |
|
| version | Version number | smallint unsigned | YES | | NULL | |
|
||||||
| updated_at | creation time | datetime | YES | | NULL | |
|
| updated_at | creation time | datetime | YES | | NULL | |
|
||||||
|
|
||||||
|
|
|
@ -7,13 +7,13 @@ Fields
|
||||||
------
|
------
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------------- | --------------- | ------------ | ---- | --- | ------- | -------------- |
|
| ------------- | --------------- | -------------- | ---- | --- | ------- | -------------- |
|
||||||
| id | generated index | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | generated index | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| client_id | | varchar(64) | NO | | NULL | |
|
| client_id | | varchar(64) | NO | | NULL | |
|
||||||
| client_secret | | varchar(64) | NO | | NULL | |
|
| client_secret | | varchar(64) | NO | | NULL | |
|
||||||
| name | | varchar(255) | NO | | NULL | |
|
| name | | varchar(255) | NO | | NULL | |
|
||||||
| redirect_uri | | varchar(255) | NO | | NULL | |
|
| redirect_uri | | varbinary(383) | NO | | NULL | |
|
||||||
| website | | varchar(255) | YES | | NULL | |
|
| website | | varbinary(383) | YES | | NULL | |
|
||||||
| scopes | | varchar(255) | YES | | NULL | |
|
| scopes | | varchar(255) | YES | | NULL | |
|
||||||
| read | Read scope | boolean | YES | | NULL | |
|
| read | Read scope | boolean | YES | | NULL | |
|
||||||
| write | Write scope | boolean | YES | | NULL | |
|
| write | Write scope | boolean | YES | | NULL | |
|
||||||
|
|
|
@ -8,7 +8,7 @@ Fields
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------- | ---------------------------------- | -------------- | ---- | --- | ------- | ----- |
|
| --------- | ---------------------------------- | -------------- | ---- | --- | ------- | ----- |
|
||||||
| object-id | object id of the incoming activity | varbinary(255) | NO | PRI | NULL | |
|
| object-id | object id of the incoming activity | varbinary(383) | NO | PRI | NULL | |
|
||||||
| received | Receiving date | datetime | YES | | NULL | |
|
| received | Receiving date | datetime | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
|
|
|
@ -20,19 +20,19 @@ Fields
|
||||||
| keywords | public keywords (interests) of the contact | text | YES | | NULL | |
|
| keywords | public keywords (interests) of the contact | text | YES | | NULL | |
|
||||||
| xmpp | XMPP address | varchar(255) | NO | | | |
|
| xmpp | XMPP address | varchar(255) | NO | | | |
|
||||||
| matrix | Matrix address | varchar(255) | NO | | | |
|
| matrix | Matrix address | varchar(255) | NO | | | |
|
||||||
| avatar | | varchar(255) | NO | | | |
|
| avatar | | varbinary(383) | NO | | | |
|
||||||
| header | Header picture | varchar(255) | YES | | NULL | |
|
| header | Header picture | varbinary(383) | YES | | NULL | |
|
||||||
| url | | varchar(255) | NO | | | |
|
| url | | varbinary(383) | NO | | | |
|
||||||
| nurl | | varchar(255) | NO | | | |
|
| nurl | | varbinary(383) | NO | | | |
|
||||||
| uri-id | Id of the item-uri table entry that contains the contact url | int unsigned | YES | | NULL | |
|
| uri-id | Id of the item-uri table entry that contains the contact url | int unsigned | YES | | NULL | |
|
||||||
| addr | | varchar(255) | NO | | | |
|
| addr | | varchar(255) | NO | | | |
|
||||||
| alias | | varchar(255) | NO | | | |
|
| alias | | varbinary(383) | NO | | | |
|
||||||
| pubkey | RSA public key 4096 bit | text | YES | | NULL | |
|
| pubkey | RSA public key 4096 bit | text | YES | | NULL | |
|
||||||
| prvkey | RSA private key 4096 bit | text | YES | | NULL | |
|
| prvkey | RSA private key 4096 bit | text | YES | | NULL | |
|
||||||
| batch | | varchar(255) | NO | | | |
|
| batch | | varbinary(383) | NO | | | |
|
||||||
| notify | | varchar(255) | YES | | NULL | |
|
| notify | | varbinary(383) | YES | | NULL | |
|
||||||
| poll | | varchar(255) | YES | | NULL | |
|
| poll | | varbinary(383) | YES | | NULL | |
|
||||||
| subscribe | | varchar(255) | YES | | NULL | |
|
| subscribe | | varbinary(383) | YES | | NULL | |
|
||||||
| last-update | Date of the last try to update the contact info | datetime | NO | | 0001-01-01 00:00:00 | |
|
| last-update | Date of the last try to update the contact info | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| next-update | Next connection request | datetime | YES | | NULL | |
|
| next-update | Next connection request | datetime | YES | | NULL | |
|
||||||
| success_update | Date of the last successful contact update | datetime | NO | | 0001-01-01 00:00:00 | |
|
| success_update | Date of the last successful contact update | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
@ -50,7 +50,7 @@ Fields
|
||||||
| archive | | boolean | NO | | 0 | |
|
| archive | | boolean | NO | | 0 | |
|
||||||
| unsearchable | Contact prefers to not be searchable | boolean | NO | | 0 | |
|
| unsearchable | Contact prefers to not be searchable | boolean | NO | | 0 | |
|
||||||
| sensitive | Contact posts sensitive content | boolean | NO | | 0 | |
|
| sensitive | Contact posts sensitive content | boolean | NO | | 0 | |
|
||||||
| baseurl | baseurl of the contact | varchar(255) | YES | | | |
|
| baseurl | baseurl of the contact | varbinary(383) | YES | | | |
|
||||||
| gsid | Global Server ID | int unsigned | YES | | NULL | |
|
| gsid | Global Server ID | int unsigned | YES | | NULL | |
|
||||||
| bd | | date | NO | | 0001-01-01 | |
|
| bd | | date | NO | | 0001-01-01 | |
|
||||||
| reason | | text | YES | | NULL | |
|
| reason | | text | YES | | NULL | |
|
||||||
|
@ -59,7 +59,7 @@ Fields
|
||||||
| rel | The kind of the relation between the user and the contact | tinyint unsigned | NO | | 0 | |
|
| rel | The kind of the relation between the user and the contact | tinyint unsigned | NO | | 0 | |
|
||||||
| protocol | Protocol of the contact | char(4) | NO | | | |
|
| protocol | Protocol of the contact | char(4) | NO | | | |
|
||||||
| subhub | | boolean | NO | | 0 | |
|
| subhub | | boolean | NO | | 0 | |
|
||||||
| hub-verify | | varchar(255) | NO | | | |
|
| hub-verify | | varbinary(383) | NO | | | |
|
||||||
| rating | Automatically detected feed poll frequency | tinyint | NO | | 0 | |
|
| rating | Automatically detected feed poll frequency | tinyint | NO | | 0 | |
|
||||||
| priority | Feed poll priority | tinyint unsigned | NO | | 0 | |
|
| priority | Feed poll priority | tinyint unsigned | NO | | 0 | |
|
||||||
| attag | | varchar(255) | NO | | | |
|
| attag | | varchar(255) | NO | | | |
|
||||||
|
@ -70,15 +70,15 @@ Fields
|
||||||
| notify_new_posts | | boolean | NO | | 0 | |
|
| notify_new_posts | | boolean | NO | | 0 | |
|
||||||
| fetch_further_information | | tinyint unsigned | NO | | 0 | |
|
| fetch_further_information | | tinyint unsigned | NO | | 0 | |
|
||||||
| ffi_keyword_denylist | | text | YES | | NULL | |
|
| ffi_keyword_denylist | | text | YES | | NULL | |
|
||||||
| photo | Link to the profile photo of the contact | varchar(255) | YES | | | |
|
| photo | Link to the profile photo of the contact | varbinary(383) | YES | | | |
|
||||||
| thumb | Link to the profile photo (thumb size) | varchar(255) | YES | | | |
|
| thumb | Link to the profile photo (thumb size) | varbinary(383) | YES | | | |
|
||||||
| micro | Link to the profile photo (micro size) | varchar(255) | YES | | | |
|
| micro | Link to the profile photo (micro size) | varbinary(383) | YES | | | |
|
||||||
| name-date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| name-date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| uri-date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| uri-date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| avatar-date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| avatar-date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| request | | varchar(255) | YES | | NULL | |
|
| request | | varbinary(383) | YES | | NULL | |
|
||||||
| confirm | | varchar(255) | YES | | NULL | |
|
| confirm | | varbinary(383) | YES | | NULL | |
|
||||||
| poco | | varchar(255) | YES | | NULL | |
|
| poco | | varbinary(383) | YES | | NULL | |
|
||||||
| writable | | boolean | NO | | 0 | |
|
| writable | | boolean | NO | | 0 | |
|
||||||
| forum | contact is a forum. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = false instead | boolean | NO | | 0 | |
|
| forum | contact is a forum. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = false instead | boolean | NO | | 0 | |
|
||||||
| prv | contact is a private group. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = true instead | boolean | NO | | 0 | |
|
| prv | contact is a private group. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = true instead | boolean | NO | | 0 | |
|
||||||
|
@ -86,8 +86,8 @@ Fields
|
||||||
| site-pubkey | Deprecated | text | YES | | NULL | |
|
| site-pubkey | Deprecated | text | YES | | NULL | |
|
||||||
| gender | Deprecated | varchar(32) | NO | | | |
|
| gender | Deprecated | varchar(32) | NO | | | |
|
||||||
| duplex | Deprecated | boolean | NO | | 0 | |
|
| duplex | Deprecated | boolean | NO | | 0 | |
|
||||||
| issued-id | Deprecated | varchar(255) | NO | | | |
|
| issued-id | Deprecated | varbinary(383) | NO | | | |
|
||||||
| dfrn-id | Deprecated | varchar(255) | NO | | | |
|
| dfrn-id | Deprecated | varbinary(383) | NO | | | |
|
||||||
| aes_allow | Deprecated | boolean | NO | | 0 | |
|
| aes_allow | Deprecated | boolean | NO | | 0 | |
|
||||||
| ret-aes | Deprecated | boolean | NO | | 0 | |
|
| ret-aes | Deprecated | boolean | NO | | 0 | |
|
||||||
| usehub | Deprecated | boolean | NO | | 0 | |
|
| usehub | Deprecated | boolean | NO | | 0 | |
|
||||||
|
|
|
@ -9,7 +9,7 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------- | ----------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
| ------- | ----------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| guid | A unique identifier for this conversation | varchar(255) | NO | | | |
|
| guid | A unique identifier for this conversation | varbinary(255) | NO | | | |
|
||||||
| recips | sender_handle;recipient_handle | text | YES | | NULL | |
|
| recips | sender_handle;recipient_handle | text | YES | | NULL | |
|
||||||
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
||||||
| creator | handle of creator | varchar(255) | NO | | | |
|
| creator | handle of creator | varchar(255) | NO | | | |
|
||||||
|
|
|
@ -9,7 +9,7 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------- | ---------------------------------------------- | ------------------ | ---- | --- | ------- | -------------- |
|
| ------- | ---------------------------------------------- | ------------------ | ---- | --- | ------- | -------------- |
|
||||||
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| uri | URI of the post that will be distributed later | varchar(255) | YES | | NULL | |
|
| uri | URI of the post that will be distributed later | varbinary(383) | YES | | NULL | |
|
||||||
| uid | Owner User id | mediumint unsigned | YES | | NULL | |
|
| uid | Owner User id | mediumint unsigned | YES | | NULL | |
|
||||||
| delayed | delay time | datetime | YES | | NULL | |
|
| delayed | delay time | datetime | YES | | NULL | |
|
||||||
| wid | Workerqueue id | int unsigned | YES | | NULL | |
|
| wid | Workerqueue id | int unsigned | YES | | NULL | |
|
||||||
|
|
|
@ -8,7 +8,7 @@ Fields
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------------ | -------------------------------------------------------------- | -------------- | ---- | --- | ------- | ----- |
|
| ------------ | -------------------------------------------------------------- | -------------- | ---- | --- | ------- | ----- |
|
||||||
| url | URL of the contact | varbinary(255) | NO | PRI | NULL | |
|
| url | URL of the contact | varbinary(383) | NO | PRI | NULL | |
|
||||||
| type | | varchar(20) | NO | | NULL | |
|
| type | | varchar(20) | NO | | NULL | |
|
||||||
| owner-uri-id | Id of the item-uri table entry that contains the apcontact url | int unsigned | YES | | NULL | |
|
| owner-uri-id | Id of the item-uri table entry that contains the apcontact url | int unsigned | YES | | NULL | |
|
||||||
|
|
||||||
|
|
|
@ -9,10 +9,10 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------- | ---------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
| --------- | ---------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| guid | | varchar(255) | NO | | | |
|
| guid | | varbinary(255) | NO | | | |
|
||||||
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
||||||
| cid | contact_id (ID of the contact in contact table) | int unsigned | NO | | 0 | |
|
| cid | contact_id (ID of the contact in contact table) | int unsigned | NO | | 0 | |
|
||||||
| uri | | varchar(255) | NO | | | |
|
| uri | | varbinary(383) | NO | | | |
|
||||||
| uri-id | Id of the item-uri table entry that contains the event uri | int unsigned | YES | | NULL | |
|
| uri-id | Id of the item-uri table entry that contains the event uri | int unsigned | YES | | NULL | |
|
||||||
| created | creation time | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | creation time | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| edited | last edit time | datetime | NO | | 0001-01-01 00:00:00 | |
|
| edited | last edit time | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
|
|
@ -9,21 +9,21 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ----------------- | ------------------------------------------------------------- | ---------------- | ---- | --- | ------------------- | -------------- |
|
| ----------------- | ------------------------------------------------------------- | ---------------- | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| guid | unique id | varchar(255) | NO | | | |
|
| guid | unique id | varbinary(255) | NO | | | |
|
||||||
| url | | varchar(255) | NO | | | |
|
| url | | varbinary(383) | NO | | | |
|
||||||
| uri-id | Id of the item-uri table entry that contains the fcontact url | int unsigned | YES | | NULL | |
|
| uri-id | Id of the item-uri table entry that contains the fcontact url | int unsigned | YES | | NULL | |
|
||||||
| name | | varchar(255) | NO | | | |
|
| name | | varchar(255) | NO | | | |
|
||||||
| photo | | varchar(255) | NO | | | |
|
| photo | | varbinary(383) | NO | | | |
|
||||||
| request | | varchar(255) | NO | | | |
|
| request | | varbinary(383) | NO | | | |
|
||||||
| nick | | varchar(255) | NO | | | |
|
| nick | | varchar(255) | NO | | | |
|
||||||
| addr | | varchar(255) | NO | | | |
|
| addr | | varchar(255) | NO | | | |
|
||||||
| batch | | varchar(255) | NO | | | |
|
| batch | | varbinary(383) | NO | | | |
|
||||||
| notify | | varchar(255) | NO | | | |
|
| notify | | varbinary(383) | NO | | | |
|
||||||
| poll | | varchar(255) | NO | | | |
|
| poll | | varbinary(383) | NO | | | |
|
||||||
| confirm | | varchar(255) | NO | | | |
|
| confirm | | varbinary(383) | NO | | | |
|
||||||
| priority | | tinyint unsigned | NO | | 0 | |
|
| priority | | tinyint unsigned | NO | | 0 | |
|
||||||
| network | | char(4) | NO | | | |
|
| network | | char(4) | NO | | | |
|
||||||
| alias | | varchar(255) | NO | | | |
|
| alias | | varbinary(383) | NO | | | |
|
||||||
| pubkey | | text | YES | | NULL | |
|
| pubkey | | text | YES | | NULL | |
|
||||||
| updated | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| updated | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| interacting_count | Number of contacts this contact interactes with | int unsigned | YES | | 0 | |
|
| interacting_count | Number of contacts this contact interactes with | int unsigned | YES | | 0 | |
|
||||||
|
|
|
@ -9,7 +9,7 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------- | ---------------------------------- | -------------- | ---- | --- | ------------------- | -------------- |
|
| ------- | ---------------------------------- | -------------- | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| url | url that awaiting to be fetched | varbinary(255) | YES | | NULL | |
|
| url | url that awaiting to be fetched | varbinary(383) | YES | | NULL | |
|
||||||
| created | Creation date of the fetch request | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | Creation date of the fetch request | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| wid | Workerqueue id | int unsigned | YES | | NULL | |
|
| wid | Workerqueue id | int unsigned | YES | | NULL | |
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ Fields
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------- | ----------------------------- | -------------- | ---- | --- | ------- | ----- |
|
| --------- | ----------------------------- | -------------- | ---- | --- | ------- | ----- |
|
||||||
| object-id | object id of fetched activity | varbinary(255) | NO | PRI | NULL | |
|
| object-id | object id of fetched activity | varbinary(383) | NO | PRI | NULL | |
|
||||||
| received | Receiving date | datetime | YES | | NULL | |
|
| received | Receiving date | datetime | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
|
|
|
@ -12,9 +12,9 @@ Fields
|
||||||
| uid | User id | mediumint unsigned | NO | | 0 | |
|
| uid | User id | mediumint unsigned | NO | | 0 | |
|
||||||
| cid | | int unsigned | NO | | 0 | |
|
| cid | | int unsigned | NO | | 0 | |
|
||||||
| name | | varchar(255) | NO | | | |
|
| name | | varchar(255) | NO | | | |
|
||||||
| url | | varchar(255) | NO | | | |
|
| url | | varbinary(383) | NO | | | |
|
||||||
| request | | varchar(255) | NO | | | |
|
| request | | varbinary(383) | NO | | | |
|
||||||
| photo | | varchar(255) | NO | | | |
|
| photo | | varbinary(383) | NO | | | |
|
||||||
| note | | text | YES | | NULL | |
|
| note | | text | YES | | NULL | |
|
||||||
| created | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------------------- | -------------------------------------------------- | ---------------- | ---- | --- | ------------------- | -------------- |
|
| --------------------- | -------------------------------------------------- | ---------------- | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| url | | varchar(255) | NO | | | |
|
| url | | varbinary(383) | NO | | | |
|
||||||
| nurl | | varchar(255) | NO | | | |
|
| nurl | | varbinary(383) | NO | | | |
|
||||||
| version | | varchar(255) | NO | | | |
|
| version | | varchar(255) | NO | | | |
|
||||||
| site_name | | varchar(255) | NO | | | |
|
| site_name | | varchar(255) | NO | | | |
|
||||||
| info | | text | YES | | NULL | |
|
| info | | text | YES | | NULL | |
|
||||||
|
@ -22,8 +22,8 @@ Fields
|
||||||
| local-posts | Number of local posts | int unsigned | YES | | NULL | |
|
| local-posts | Number of local posts | int unsigned | YES | | NULL | |
|
||||||
| local-comments | Number of local comments | int unsigned | YES | | NULL | |
|
| local-comments | Number of local comments | int unsigned | YES | | NULL | |
|
||||||
| directory-type | Type of directory service (Poco, Mastodon) | tinyint | YES | | 0 | |
|
| directory-type | Type of directory service (Poco, Mastodon) | tinyint | YES | | 0 | |
|
||||||
| poco | | varchar(255) | NO | | | |
|
| poco | | varbinary(383) | NO | | | |
|
||||||
| noscrape | | varchar(255) | NO | | | |
|
| noscrape | | varbinary(383) | NO | | | |
|
||||||
| network | | char(4) | NO | | | |
|
| network | | char(4) | NO | | | |
|
||||||
| protocol | The protocol of the server | tinyint unsigned | YES | | NULL | |
|
| protocol | The protocol of the server | tinyint unsigned | YES | | NULL | |
|
||||||
| platform | | varchar(255) | NO | | | |
|
| platform | | varchar(255) | NO | | | |
|
||||||
|
|
|
@ -9,10 +9,10 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------------------ | -------------------------------------- | -------------- | ---- | --- | ------- | -------------- |
|
| ------------------ | -------------------------------------- | -------------- | ---- | --- | ------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| activity-id | id of the incoming activity | varbinary(255) | YES | | NULL | |
|
| activity-id | id of the incoming activity | varbinary(383) | YES | | NULL | |
|
||||||
| object-id | | varbinary(255) | YES | | NULL | |
|
| object-id | | varbinary(383) | YES | | NULL | |
|
||||||
| in-reply-to-id | | varbinary(255) | YES | | NULL | |
|
| in-reply-to-id | | varbinary(383) | YES | | NULL | |
|
||||||
| conversation | | varbinary(255) | YES | | NULL | |
|
| conversation | | varbinary(383) | YES | | NULL | |
|
||||||
| type | Type of the activity | varchar(64) | YES | | NULL | |
|
| type | Type of the activity | varchar(64) | YES | | NULL | |
|
||||||
| object-type | Type of the object activity | varchar(64) | YES | | NULL | |
|
| object-type | Type of the object activity | varchar(64) | YES | | NULL | |
|
||||||
| object-object-type | Type of the object's object activity | varchar(64) | YES | | NULL | |
|
| object-object-type | Type of the object's object activity | varchar(64) | YES | | NULL | |
|
||||||
|
|
|
@ -8,7 +8,7 @@ Fields
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| -------- | ------------------------------------ | -------------- | ---- | --- | ------------------- | ----- |
|
| -------- | ------------------------------------ | -------------- | ---- | --- | ------------------- | ----- |
|
||||||
| url | URL of the inbox | varbinary(255) | NO | PRI | NULL | |
|
| url | URL of the inbox | varbinary(383) | NO | PRI | NULL | |
|
||||||
| uri-id | Item-uri id of inbox url | int unsigned | YES | | NULL | |
|
| uri-id | Item-uri id of inbox url | int unsigned | YES | | NULL | |
|
||||||
| created | Creation date of this entry | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | Creation date of this entry | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| success | Date of the last successful delivery | datetime | NO | | 0001-01-01 00:00:00 | |
|
| success | Date of the last successful delivery | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
|
|
@ -16,7 +16,7 @@ Fields
|
||||||
| knowyou | | boolean | NO | | 0 | |
|
| knowyou | | boolean | NO | | 0 | |
|
||||||
| duplex | deprecated | boolean | NO | | 0 | |
|
| duplex | deprecated | boolean | NO | | 0 | |
|
||||||
| note | | text | YES | | NULL | |
|
| note | | text | YES | | NULL | |
|
||||||
| hash | | varchar(255) | NO | | | |
|
| hash | | varbinary(255) | NO | | | |
|
||||||
| datetime | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| datetime | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| blocked | deprecated | boolean | NO | | 0 | |
|
| blocked | deprecated | boolean | NO | | 0 | |
|
||||||
| ignore | | boolean | NO | | 0 | |
|
| ignore | | boolean | NO | | 0 | |
|
||||||
|
|
|
@ -9,7 +9,7 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ----- | ------------------------------- | -------------- | ---- | --- | ------- | -------------- |
|
| ----- | ------------------------------- | -------------- | ---- | --- | ------- | -------------- |
|
||||||
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| uri | URI of an item | varbinary(255) | NO | | NULL | |
|
| uri | URI of an item | varbinary(383) | NO | | NULL | |
|
||||||
| guid | A unique identifier for an item | varbinary(255) | YES | | NULL | |
|
| guid | A unique identifier for an item | varbinary(255) | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
|
|
|
@ -10,11 +10,11 @@ Fields
|
||||||
| ------------- | -------------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
| ------------- | -------------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
||||||
| guid | A unique identifier for this private message | varchar(255) | NO | | | |
|
| guid | A unique identifier for this private message | varbinary(255) | NO | | | |
|
||||||
| from-name | name of the sender | varchar(255) | NO | | | |
|
| from-name | name of the sender | varchar(255) | NO | | | |
|
||||||
| from-photo | contact photo link of the sender | varchar(255) | NO | | | |
|
| from-photo | contact photo link of the sender | varbinary(383) | NO | | | |
|
||||||
| from-url | profile linke of the sender | varchar(255) | NO | | | |
|
| from-url | profile linke of the sender | varbinary(383) | NO | | | |
|
||||||
| contact-id | contact.id | varchar(255) | YES | | NULL | |
|
| contact-id | contact.id | varbinary(255) | YES | | NULL | |
|
||||||
| author-id | Link to the contact table with uid=0 of the author of the mail | int unsigned | YES | | NULL | |
|
| author-id | Link to the contact table with uid=0 of the author of the mail | int unsigned | YES | | NULL | |
|
||||||
| convid | conv.id | int unsigned | YES | | NULL | |
|
| convid | conv.id | int unsigned | YES | | NULL | |
|
||||||
| title | | varchar(255) | NO | | | |
|
| title | | varchar(255) | NO | | | |
|
||||||
|
@ -23,11 +23,11 @@ Fields
|
||||||
| reply | | boolean | NO | | 0 | |
|
| reply | | boolean | NO | | 0 | |
|
||||||
| replied | | boolean | NO | | 0 | |
|
| replied | | boolean | NO | | 0 | |
|
||||||
| unknown | if sender not in the contact table this is 1 | boolean | NO | | 0 | |
|
| unknown | if sender not in the contact table this is 1 | boolean | NO | | 0 | |
|
||||||
| uri | | varchar(255) | NO | | | |
|
| uri | | varbinary(383) | NO | | | |
|
||||||
| uri-id | Item-uri id of the related mail | int unsigned | YES | | NULL | |
|
| uri-id | Item-uri id of the related mail | int unsigned | YES | | NULL | |
|
||||||
| parent-uri | | varchar(255) | NO | | | |
|
| parent-uri | | varbinary(383) | NO | | | |
|
||||||
| parent-uri-id | Item-uri id of the parent of the related mail | int unsigned | YES | | NULL | |
|
| parent-uri-id | Item-uri id of the parent of the related mail | int unsigned | YES | | NULL | |
|
||||||
| thr-parent | | varchar(255) | YES | | NULL | |
|
| thr-parent | | varbinary(383) | YES | | NULL | |
|
||||||
| thr-parent-id | Id of the item-uri table that contains the thread parent uri | int unsigned | YES | | NULL | |
|
| thr-parent-id | Id of the item-uri table that contains the thread parent uri | int unsigned | YES | | NULL | |
|
||||||
| created | creation time of the private message | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | creation time of the private message | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
|
||||||
|
|
|
@ -11,12 +11,12 @@ Fields
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| type | | smallint unsigned | NO | | 0 | |
|
| type | | smallint unsigned | NO | | 0 | |
|
||||||
| name | | varchar(255) | NO | | | |
|
| name | | varchar(255) | NO | | | |
|
||||||
| url | | varchar(255) | NO | | | |
|
| url | | varbinary(383) | NO | | | |
|
||||||
| photo | | varchar(255) | NO | | | |
|
| photo | | varbinary(383) | NO | | | |
|
||||||
| date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| date | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| msg | | mediumtext | YES | | NULL | |
|
| msg | | mediumtext | YES | | NULL | |
|
||||||
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
||||||
| link | | varchar(255) | NO | | | |
|
| link | | varbinary(383) | NO | | | |
|
||||||
| iid | | int unsigned | YES | | NULL | |
|
| iid | | int unsigned | YES | | NULL | |
|
||||||
| parent | | int unsigned | YES | | NULL | |
|
| parent | | int unsigned | YES | | NULL | |
|
||||||
| uri-id | Item-uri id of the related post | int unsigned | YES | | NULL | |
|
| uri-id | Item-uri id of the related post | int unsigned | YES | | NULL | |
|
||||||
|
|
|
@ -8,7 +8,7 @@ Fields
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| -------- | ------------------------------ | ------------------ | ---- | --- | ------------------- | ----- |
|
| -------- | ------------------------------ | ------------------ | ---- | --- | ------------------- | ----- |
|
||||||
| url | page url | varbinary(255) | NO | PRI | NULL | |
|
| url | page url | varbinary(383) | NO | PRI | NULL | |
|
||||||
| maxwidth | Maximum width passed to Oembed | mediumint unsigned | NO | PRI | NULL | |
|
| maxwidth | Maximum width passed to Oembed | mediumint unsigned | NO | PRI | NULL | |
|
||||||
| content | OEmbed data of the page | mediumtext | YES | | NULL | |
|
| content | OEmbed data of the page | mediumtext | YES | | NULL | |
|
||||||
| created | datetime of creation | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | datetime of creation | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
|
|
@ -7,7 +7,7 @@ Fields
|
||||||
------
|
------
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------ | ---- | --- | ------- | ----- |
|
| --------------- | ------------------------------------------------------------------------------------------------------------------------- | -------------- | ---- | --- | ------- | ----- |
|
||||||
| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | |
|
| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | |
|
||||||
| title | item title | varchar(255) | NO | | | |
|
| title | item title | varchar(255) | NO | | | |
|
||||||
| content-warning | | varchar(255) | NO | | | |
|
| content-warning | | varchar(255) | NO | | | |
|
||||||
|
@ -24,7 +24,7 @@ Fields
|
||||||
| target-type | ActivityStreams target type if applicable (URI) | varchar(100) | NO | | | |
|
| target-type | ActivityStreams target type if applicable (URI) | varchar(100) | NO | | | |
|
||||||
| target | JSON encoded target structure if used | text | YES | | NULL | |
|
| target | JSON encoded target structure if used | text | YES | | NULL | |
|
||||||
| resource-id | Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type | varchar(32) | NO | | | |
|
| resource-id | Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type | varchar(32) | NO | | | |
|
||||||
| plink | permalink or URL to a displayable copy of the message at its source | varchar(255) | NO | | | |
|
| plink | permalink or URL to a displayable copy of the message at its source | varbinary(383) | NO | | | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -7,7 +7,7 @@ Fields
|
||||||
------
|
------
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| --------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------ | ---- | --- | ------------------- | ----- |
|
| --------------- | ------------------------------------------------------------------------------------------------------------------------- | -------------- | ---- | --- | ------------------- | ----- |
|
||||||
| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | |
|
| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | |
|
||||||
| edited | Date of edit | datetime | NO | PRI | 0001-01-01 00:00:00 | |
|
| edited | Date of edit | datetime | NO | PRI | 0001-01-01 00:00:00 | |
|
||||||
| title | item title | varchar(255) | NO | | | |
|
| title | item title | varchar(255) | NO | | | |
|
||||||
|
@ -25,7 +25,7 @@ Fields
|
||||||
| target-type | ActivityStreams target type if applicable (URI) | varchar(100) | NO | | | |
|
| target-type | ActivityStreams target type if applicable (URI) | varchar(100) | NO | | | |
|
||||||
| target | JSON encoded target structure if used | text | YES | | NULL | |
|
| target | JSON encoded target structure if used | text | YES | | NULL | |
|
||||||
| resource-id | Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type | varchar(32) | NO | | | |
|
| resource-id | Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type | varchar(32) | NO | | | |
|
||||||
| plink | permalink or URL to a displayable copy of the message at its source | varchar(255) | NO | | | |
|
| plink | permalink or URL to a displayable copy of the message at its source | varbinary(383) | NO | | | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -21,12 +21,12 @@ Fields
|
||||||
| preview-width | Width of the preview picture | smallint unsigned | YES | | NULL | |
|
| preview-width | Width of the preview picture | smallint unsigned | YES | | NULL | |
|
||||||
| description | | text | YES | | NULL | |
|
| description | | text | YES | | NULL | |
|
||||||
| name | Name of the media | varchar(255) | YES | | NULL | |
|
| name | Name of the media | varchar(255) | YES | | NULL | |
|
||||||
| author-url | URL of the author of the media | varbinary(255) | YES | | NULL | |
|
| author-url | URL of the author of the media | varbinary(383) | YES | | NULL | |
|
||||||
| author-name | Name of the author of the media | varchar(255) | YES | | NULL | |
|
| author-name | Name of the author of the media | varchar(255) | YES | | NULL | |
|
||||||
| author-image | Image of the author of the media | varbinary(255) | YES | | NULL | |
|
| author-image | Image of the author of the media | varbinary(383) | YES | | NULL | |
|
||||||
| publisher-url | URL of the publisher of the media | varbinary(255) | YES | | NULL | |
|
| publisher-url | URL of the publisher of the media | varbinary(383) | YES | | NULL | |
|
||||||
| publisher-name | Name of the publisher of the media | varchar(255) | YES | | NULL | |
|
| publisher-name | Name of the publisher of the media | varchar(255) | YES | | NULL | |
|
||||||
| publisher-image | Image of the publisher of the media | varbinary(255) | YES | | NULL | |
|
| publisher-image | Image of the publisher of the media | varbinary(383) | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -47,8 +47,8 @@ Fields
|
||||||
| homepage | | varchar(255) | NO | | | |
|
| homepage | | varchar(255) | NO | | | |
|
||||||
| xmpp | XMPP address | varchar(255) | NO | | | |
|
| xmpp | XMPP address | varchar(255) | NO | | | |
|
||||||
| matrix | Matrix address | varchar(255) | NO | | | |
|
| matrix | Matrix address | varchar(255) | NO | | | |
|
||||||
| photo | | varchar(255) | NO | | | |
|
| photo | | varbinary(383) | NO | | | |
|
||||||
| thumb | | varchar(255) | NO | | | |
|
| thumb | | varbinary(383) | NO | | | |
|
||||||
| publish | publish default profile in local directory | boolean | NO | | 0 | |
|
| publish | publish default profile in local directory | boolean | NO | | 0 | |
|
||||||
| net-publish | publish profile in global directory | boolean | NO | | 0 | |
|
| net-publish | publish profile in global directory | boolean | NO | | 0 | |
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ Fields
|
||||||
| ------------ | --------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
| ------------ | --------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| uid | User id | mediumint unsigned | NO | | 0 | |
|
| uid | User id | mediumint unsigned | NO | | 0 | |
|
||||||
| callback_url | | varchar(255) | NO | | | |
|
| callback_url | | varbinary(383) | NO | | | |
|
||||||
| topic | | varchar(255) | NO | | | |
|
| topic | | varchar(255) | NO | | | |
|
||||||
| nickname | | varchar(255) | NO | | | |
|
| nickname | | varchar(255) | NO | | | |
|
||||||
| push | Retrial counter | tinyint | NO | | 0 | |
|
| push | Retrial counter | tinyint | NO | | 0 | |
|
||||||
|
|
|
@ -9,7 +9,7 @@ Fields
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| -------- | ------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
| -------- | ------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
||||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| hash | | varchar(255) | NO | | | |
|
| hash | | varbinary(255) | NO | | | |
|
||||||
| created | | datetime | NO | | 0001-01-01 00:00:00 | |
|
| created | | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
| uid | User id | mediumint unsigned | NO | | 0 | |
|
| uid | User id | mediumint unsigned | NO | | 0 | |
|
||||||
| password | | varchar(255) | NO | | | |
|
| password | | varchar(255) | NO | | | |
|
||||||
|
|
|
@ -10,7 +10,7 @@ Fields
|
||||||
| ----- | ----------------------------------------------------------------------------- | ---------------- | ---- | --- | ------- | -------------- |
|
| ----- | ----------------------------------------------------------------------------- | ---------------- | ---- | --- | ------- | -------------- |
|
||||||
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| name | | varchar(96) | NO | | | |
|
| name | | varchar(96) | NO | | | |
|
||||||
| url | | varbinary(255) | NO | | | |
|
| url | | varbinary(383) | NO | | | |
|
||||||
| type | Type of the tag (Unknown, General Collection, Follower Collection or Account) | tinyint unsigned | YES | | NULL | |
|
| type | Type of the tag (Unknown, General Collection, Follower Collection or Account) | tinyint unsigned | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
|
|
|
@ -24,7 +24,7 @@ Fields
|
||||||
| fetch_further_information | | tinyint unsigned | YES | | NULL | |
|
| fetch_further_information | | tinyint unsigned | YES | | NULL | |
|
||||||
| ffi_keyword_denylist | | text | YES | | NULL | |
|
| ffi_keyword_denylist | | text | YES | | NULL | |
|
||||||
| subhub | | boolean | YES | | NULL | |
|
| subhub | | boolean | YES | | NULL | |
|
||||||
| hub-verify | | varchar(255) | YES | | NULL | |
|
| hub-verify | | varbinary(383) | YES | | NULL | |
|
||||||
| protocol | Protocol of the contact | char(4) | YES | | NULL | |
|
| protocol | Protocol of the contact | char(4) | YES | | NULL | |
|
||||||
| rating | Automatically detected feed poll frequency | tinyint | YES | | NULL | |
|
| rating | Automatically detected feed poll frequency | tinyint | YES | | NULL | |
|
||||||
| priority | Feed poll priority | tinyint unsigned | YES | | NULL | |
|
| priority | Feed poll priority | tinyint unsigned | YES | | NULL | |
|
||||||
|
|
|
@ -35,14 +35,11 @@ class ItemURI
|
||||||
*/
|
*/
|
||||||
public static function insert(array $fields)
|
public static function insert(array $fields)
|
||||||
{
|
{
|
||||||
// If the URI gets too long we only take the first parts and hope for best
|
if (!DBA::exists('item-uri', ['uri' => $fields['uri']])) {
|
||||||
$uri = substr($fields['uri'], 0, 255);
|
|
||||||
|
|
||||||
if (!DBA::exists('item-uri', ['uri' => $uri])) {
|
|
||||||
DBA::insert('item-uri', $fields, Database::INSERT_UPDATE);
|
DBA::insert('item-uri', $fields, Database::INSERT_UPDATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
$itemuri = DBA::selectFirst('item-uri', ['id', 'guid'], ['uri' => $uri]);
|
$itemuri = DBA::selectFirst('item-uri', ['id', 'guid'], ['uri' => $fields['uri']]);
|
||||||
|
|
||||||
if (!DBA::isResult($itemuri)) {
|
if (!DBA::isResult($itemuri)) {
|
||||||
// This shouldn't happen
|
// This shouldn't happen
|
||||||
|
@ -72,9 +69,6 @@ class ItemURI
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the URI gets too long we only take the first parts and hope for best
|
|
||||||
$uri = substr($uri, 0, 255);
|
|
||||||
|
|
||||||
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
|
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
|
||||||
|
|
||||||
if (!DBA::isResult($itemuri) && $insert) {
|
if (!DBA::isResult($itemuri) && $insert) {
|
||||||
|
@ -93,9 +87,6 @@ class ItemURI
|
||||||
*/
|
*/
|
||||||
public static function getIdByGUID(string $guid): int
|
public static function getIdByGUID(string $guid): int
|
||||||
{
|
{
|
||||||
// If the GUID gets too long we only take the first parts and hope for best
|
|
||||||
$guid = substr($guid, 0, 255);
|
|
||||||
|
|
||||||
$itemuri = DBA::selectFirst('item-uri', ['id'], ['guid' => $guid]);
|
$itemuri = DBA::selectFirst('item-uri', ['id'], ['guid' => $guid]);
|
||||||
|
|
||||||
if (!DBA::isResult($itemuri)) {
|
if (!DBA::isResult($itemuri)) {
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1481);
|
define('DB_UPDATE_VERSION', 1482);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
@ -64,8 +64,8 @@ return [
|
||||||
"comment" => "Global servers",
|
"comment" => "Global servers",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nurl" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"version" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"version" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"site_name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"site_name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"info" => ["type" => "text", "comment" => ""],
|
"info" => ["type" => "text", "comment" => ""],
|
||||||
|
@ -77,8 +77,8 @@ return [
|
||||||
"local-posts" => ["type" => "int unsigned", "comment" => "Number of local posts"],
|
"local-posts" => ["type" => "int unsigned", "comment" => "Number of local posts"],
|
||||||
"local-comments" => ["type" => "int unsigned", "comment" => "Number of local comments"],
|
"local-comments" => ["type" => "int unsigned", "comment" => "Number of local comments"],
|
||||||
"directory-type" => ["type" => "tinyint", "default" => "0", "comment" => "Type of directory service (Poco, Mastodon)"],
|
"directory-type" => ["type" => "tinyint", "default" => "0", "comment" => "Type of directory service (Poco, Mastodon)"],
|
||||||
"poco" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"poco" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"noscrape" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"noscrape" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"protocol" => ["type" => "tinyint unsigned", "comment" => "The protocol of the server"],
|
"protocol" => ["type" => "tinyint unsigned", "comment" => "The protocol of the server"],
|
||||||
"platform" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"platform" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -160,7 +160,7 @@ return [
|
||||||
"comment" => "URI and GUID for items",
|
"comment" => "URI and GUID for items",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
|
||||||
"uri" => ["type" => "varbinary(255)", "not null" => "1", "comment" => "URI of an item"],
|
"uri" => ["type" => "varbinary(383)", "not null" => "1", "comment" => "URI of an item"],
|
||||||
"guid" => ["type" => "varbinary(255)", "comment" => "A unique identifier for an item"]
|
"guid" => ["type" => "varbinary(255)", "comment" => "A unique identifier for an item"]
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -184,19 +184,19 @@ return [
|
||||||
"keywords" => ["type" => "text", "comment" => "public keywords (interests) of the contact"],
|
"keywords" => ["type" => "text", "comment" => "public keywords (interests) of the contact"],
|
||||||
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
|
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
|
||||||
"matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
|
"matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
|
||||||
"avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"avatar" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"header" => ["type" => "varchar(255)", "comment" => "Header picture"],
|
"header" => ["type" => "varbinary(383)", "comment" => "Header picture"],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nurl" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
|
||||||
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"alias" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"pubkey" => ["type" => "text", "comment" => "RSA public key 4096 bit"],
|
"pubkey" => ["type" => "text", "comment" => "RSA public key 4096 bit"],
|
||||||
"prvkey" => ["type" => "text", "comment" => "RSA private key 4096 bit"],
|
"prvkey" => ["type" => "text", "comment" => "RSA private key 4096 bit"],
|
||||||
"batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"batch" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"notify" => ["type" => "varchar(255)", "comment" => ""],
|
"notify" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"poll" => ["type" => "varchar(255)", "comment" => ""],
|
"poll" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"subscribe" => ["type" => "varchar(255)", "comment" => ""],
|
"subscribe" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"last-update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last try to update the contact info"],
|
"last-update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last try to update the contact info"],
|
||||||
"next-update" => ["type" => "datetime", "comment" => "Next connection request"],
|
"next-update" => ["type" => "datetime", "comment" => "Next connection request"],
|
||||||
"success_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful contact update"],
|
"success_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful contact update"],
|
||||||
|
@ -214,7 +214,7 @@ return [
|
||||||
"archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"unsearchable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact prefers to not be searchable"],
|
"unsearchable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact prefers to not be searchable"],
|
||||||
"sensitive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact posts sensitive content"],
|
"sensitive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact posts sensitive content"],
|
||||||
"baseurl" => ["type" => "varchar(255)", "default" => "", "comment" => "baseurl of the contact"],
|
"baseurl" => ["type" => "varbinary(383)", "default" => "", "comment" => "baseurl of the contact"],
|
||||||
"gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
|
"gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
|
||||||
"bd" => ["type" => "date", "not null" => "1", "default" => DBA::NULL_DATE, "comment" => ""],
|
"bd" => ["type" => "date", "not null" => "1", "default" => DBA::NULL_DATE, "comment" => ""],
|
||||||
// User depending fields
|
// User depending fields
|
||||||
|
@ -224,7 +224,7 @@ return [
|
||||||
"rel" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "The kind of the relation between the user and the contact"],
|
"rel" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "The kind of the relation between the user and the contact"],
|
||||||
"protocol" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Protocol of the contact"],
|
"protocol" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Protocol of the contact"],
|
||||||
"subhub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"subhub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"hub-verify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"hub-verify" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"rating" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Automatically detected feed poll frequency"],
|
"rating" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Automatically detected feed poll frequency"],
|
||||||
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Feed poll priority"],
|
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Feed poll priority"],
|
||||||
"attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -236,15 +236,15 @@ return [
|
||||||
"fetch_further_information" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
"fetch_further_information" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
|
"ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
|
||||||
// Deprecated, but still in use
|
// Deprecated, but still in use
|
||||||
"photo" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo of the contact"],
|
"photo" => ["type" => "varbinary(383)", "default" => "", "comment" => "Link to the profile photo of the contact"],
|
||||||
"thumb" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo (thumb size)"],
|
"thumb" => ["type" => "varbinary(383)", "default" => "", "comment" => "Link to the profile photo (thumb size)"],
|
||||||
"micro" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo (micro size)"],
|
"micro" => ["type" => "varbinary(383)", "default" => "", "comment" => "Link to the profile photo (micro size)"],
|
||||||
"name-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"name-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"uri-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"uri-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"avatar-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"avatar-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"request" => ["type" => "varchar(255)", "comment" => ""],
|
"request" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"confirm" => ["type" => "varchar(255)", "comment" => ""],
|
"confirm" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"poco" => ["type" => "varchar(255)", "comment" => ""],
|
"poco" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"writable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"writable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"forum" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a forum. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = false instead"],
|
"forum" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a forum. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = false instead"],
|
||||||
"prv" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a private group. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = true instead"],
|
"prv" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a private group. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = true instead"],
|
||||||
|
@ -253,8 +253,8 @@ return [
|
||||||
"site-pubkey" => ["type" => "text", "comment" => "Deprecated"],
|
"site-pubkey" => ["type" => "text", "comment" => "Deprecated"],
|
||||||
"gender" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
|
"gender" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
|
||||||
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
||||||
"issued-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
|
"issued-id" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
|
||||||
"dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
|
"dfrn-id" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
|
||||||
"aes_allow" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
"aes_allow" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
||||||
"ret-aes" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
"ret-aes" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
||||||
"usehub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
"usehub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
|
||||||
|
@ -293,7 +293,7 @@ return [
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"type" => ["type" => "tinyint unsigned", "comment" => "Type of the tag (Unknown, General Collection, Follower Collection or Account)"],
|
"type" => ["type" => "tinyint unsigned", "comment" => "Type of the tag (Unknown, General Collection, Follower Collection or Account)"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -391,17 +391,17 @@ return [
|
||||||
"apcontact" => [
|
"apcontact" => [
|
||||||
"comment" => "ActivityPub compatible contacts - used in the ActivityPub implementation",
|
"comment" => "ActivityPub compatible contacts - used in the ActivityPub implementation",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
|
||||||
"uuid" => ["type" => "varchar(255)", "comment" => ""],
|
"uuid" => ["type" => "varbinary(255)", "comment" => ""],
|
||||||
"type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
|
"type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
|
||||||
"following" => ["type" => "varchar(255)", "comment" => ""],
|
"following" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"followers" => ["type" => "varchar(255)", "comment" => ""],
|
"followers" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"inbox" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
|
"inbox" => ["type" => "varbinary(383)", "not null" => "1", "comment" => ""],
|
||||||
"outbox" => ["type" => "varchar(255)", "comment" => ""],
|
"outbox" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"sharedinbox" => ["type" => "varchar(255)", "comment" => ""],
|
"sharedinbox" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"featured" => ["type" => "varchar(255)", "comment" => "Address for the collection of featured posts"],
|
"featured" => ["type" => "varbinary(383)", "comment" => "Address for the collection of featured posts"],
|
||||||
"featured-tags" => ["type" => "varchar(255)", "comment" => "Address for the collection of featured tags"],
|
"featured-tags" => ["type" => "varbinary(383)", "comment" => "Address for the collection of featured tags"],
|
||||||
"manually-approve" => ["type" => "boolean", "comment" => ""],
|
"manually-approve" => ["type" => "boolean", "comment" => ""],
|
||||||
"discoverable" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is published in their directory"],
|
"discoverable" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is published in their directory"],
|
||||||
"suspended" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is suspended"],
|
"suspended" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is suspended"],
|
||||||
|
@ -410,13 +410,13 @@ return [
|
||||||
"about" => ["type" => "text", "comment" => ""],
|
"about" => ["type" => "text", "comment" => ""],
|
||||||
"xmpp" => ["type" => "varchar(255)", "comment" => "XMPP address"],
|
"xmpp" => ["type" => "varchar(255)", "comment" => "XMPP address"],
|
||||||
"matrix" => ["type" => "varchar(255)", "comment" => "Matrix address"],
|
"matrix" => ["type" => "varchar(255)", "comment" => "Matrix address"],
|
||||||
"photo" => ["type" => "varchar(255)", "comment" => ""],
|
"photo" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"header" => ["type" => "varchar(255)", "comment" => "Header picture"],
|
"header" => ["type" => "varbinary(383)", "comment" => "Header picture"],
|
||||||
"addr" => ["type" => "varchar(255)", "comment" => ""],
|
"addr" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"alias" => ["type" => "varchar(255)", "comment" => ""],
|
"alias" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"pubkey" => ["type" => "text", "comment" => ""],
|
"pubkey" => ["type" => "text", "comment" => ""],
|
||||||
"subscribe" => ["type" => "varchar(255)", "comment" => ""],
|
"subscribe" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"baseurl" => ["type" => "varchar(255)", "comment" => "baseurl of the ap contact"],
|
"baseurl" => ["type" => "varbinary(383)", "comment" => "baseurl of the ap contact"],
|
||||||
"gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
|
"gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
|
||||||
"generator" => ["type" => "varchar(255)", "comment" => "Name of the contact's system"],
|
"generator" => ["type" => "varchar(255)", "comment" => "Name of the contact's system"],
|
||||||
"following_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of following contacts"],
|
"following_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of following contacts"],
|
||||||
|
@ -442,8 +442,8 @@ return [
|
||||||
"client_id" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
|
"client_id" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
|
||||||
"client_secret" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
|
"client_secret" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
|
||||||
"redirect_uri" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
|
"redirect_uri" => ["type" => "varbinary(383)", "not null" => "1", "comment" => ""],
|
||||||
"website" => ["type" => "varchar(255)", "comment" => ""],
|
"website" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"scopes" => ["type" => "varchar(255)", "comment" => ""],
|
"scopes" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"read" => ["type" => "boolean", "comment" => "Read scope"],
|
"read" => ["type" => "boolean", "comment" => "Read scope"],
|
||||||
"write" => ["type" => "boolean", "comment" => "Write scope"],
|
"write" => ["type" => "boolean", "comment" => "Write scope"],
|
||||||
|
@ -461,7 +461,7 @@ return [
|
||||||
"application-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["application" => "id"], "comment" => ""],
|
"application-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["application" => "id"], "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
||||||
"timeline" => ["type" => "varchar(64)", "not null" => "1", "primary" => "1", "comment" => "Marker (home, notifications)"],
|
"timeline" => ["type" => "varchar(64)", "not null" => "1", "primary" => "1", "comment" => "Marker (home, notifications)"],
|
||||||
"last_read_id" => ["type" => "varchar(255)", "comment" => "Marker id for the timeline"],
|
"last_read_id" => ["type" => "varbinary(383)", "comment" => "Marker id for the timeline"],
|
||||||
"version" => ["type" => "smallint unsigned", "comment" => "Version number"],
|
"version" => ["type" => "smallint unsigned", "comment" => "Version number"],
|
||||||
"updated_at" => ["type" => "datetime", "comment" => "creation time"],
|
"updated_at" => ["type" => "datetime", "comment" => "creation time"],
|
||||||
],
|
],
|
||||||
|
@ -557,7 +557,7 @@ return [
|
||||||
"comment" => "private messages",
|
"comment" => "private messages",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this conversation"],
|
"guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this conversation"],
|
||||||
"recips" => ["type" => "text", "comment" => "sender_handle;recipient_handle"],
|
"recips" => ["type" => "text", "comment" => "sender_handle;recipient_handle"],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
||||||
"creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "handle of creator"],
|
"creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "handle of creator"],
|
||||||
|
@ -600,7 +600,7 @@ return [
|
||||||
"comment" => "Posts that are about to be distributed at a later time",
|
"comment" => "Posts that are about to be distributed at a later time",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
|
||||||
"uri" => ["type" => "varchar(255)", "comment" => "URI of the post that will be distributed later"],
|
"uri" => ["type" => "varbinary(383)", "comment" => "URI of the post that will be distributed later"],
|
||||||
"uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
"uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
||||||
"delayed" => ["type" => "datetime", "comment" => "delay time"],
|
"delayed" => ["type" => "datetime", "comment" => "delay time"],
|
||||||
"wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
|
"wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
|
||||||
|
@ -624,7 +624,7 @@ return [
|
||||||
"endpoint" => [
|
"endpoint" => [
|
||||||
"comment" => "ActivityPub endpoints - used in the ActivityPub implementation",
|
"comment" => "ActivityPub endpoints - used in the ActivityPub implementation",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
|
||||||
"type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
|
"type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
|
||||||
"owner-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
|
"owner-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
|
||||||
],
|
],
|
||||||
|
@ -637,10 +637,10 @@ return [
|
||||||
"comment" => "Events",
|
"comment" => "Events",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
||||||
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
|
||||||
"uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"uri" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the event uri"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the event uri"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
|
||||||
"edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
|
"edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
|
||||||
|
@ -668,21 +668,21 @@ return [
|
||||||
"comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
|
"comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "unique id"],
|
"guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "unique id"],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the fcontact url"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the fcontact url"],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"request" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"batch" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"notify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"notify" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"poll" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"poll" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"confirm" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"confirm" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"alias" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"pubkey" => ["type" => "text", "comment" => ""],
|
"pubkey" => ["type" => "text", "comment" => ""],
|
||||||
"updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interactes with"],
|
"interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interactes with"],
|
||||||
|
@ -700,7 +700,7 @@ return [
|
||||||
"comment" => "",
|
"comment" => "",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"url" => ["type" => "varbinary(255)", "comment" => "url that awaiting to be fetched"],
|
"url" => ["type" => "varbinary(383)", "comment" => "url that awaiting to be fetched"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of the fetch request"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of the fetch request"],
|
||||||
"wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"], ],
|
"wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"], ],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -717,9 +717,9 @@ return [
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"request" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"note" => ["type" => "text", "comment" => ""],
|
"note" => ["type" => "text", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
],
|
],
|
||||||
|
@ -789,10 +789,10 @@ return [
|
||||||
"comment" => "Incoming activity",
|
"comment" => "Incoming activity",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"activity-id" => ["type" => "varbinary(255)", "comment" => "id of the incoming activity"],
|
"activity-id" => ["type" => "varbinary(383)", "comment" => "id of the incoming activity"],
|
||||||
"object-id" => ["type" => "varbinary(255)", "comment" => ""],
|
"object-id" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"in-reply-to-id" => ["type" => "varbinary(255)", "comment" => ""],
|
"in-reply-to-id" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"conversation" => ["type" => "varbinary(255)", "comment" => ""],
|
"conversation" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"type" => ["type" => "varchar(64)", "comment" => "Type of the activity"],
|
"type" => ["type" => "varchar(64)", "comment" => "Type of the activity"],
|
||||||
"object-type" => ["type" => "varchar(64)", "comment" => "Type of the object activity"],
|
"object-type" => ["type" => "varchar(64)", "comment" => "Type of the object activity"],
|
||||||
"object-object-type" => ["type" => "varchar(64)", "comment" => "Type of the object's object activity"],
|
"object-object-type" => ["type" => "varchar(64)", "comment" => "Type of the object's object activity"],
|
||||||
|
@ -824,7 +824,7 @@ return [
|
||||||
"inbox-status" => [
|
"inbox-status" => [
|
||||||
"comment" => "Status of ActivityPub inboxes",
|
"comment" => "Status of ActivityPub inboxes",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the inbox"],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "URL of the inbox"],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of this entry"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of this entry"],
|
||||||
"success" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful delivery"],
|
"success" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful delivery"],
|
||||||
|
@ -849,7 +849,7 @@ return [
|
||||||
"knowyou" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"knowyou" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
|
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
|
||||||
"note" => ["type" => "text", "comment" => ""],
|
"note" => ["type" => "text", "comment" => ""],
|
||||||
"hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"hash" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"datetime" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"datetime" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
|
"blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
|
||||||
"ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -880,11 +880,11 @@ return [
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
|
"guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
|
||||||
"from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
|
"from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
|
||||||
"from-photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
|
"from-photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
|
||||||
"from-url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
|
"from-url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
|
||||||
"contact-id" => ["type" => "varchar(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
|
"contact-id" => ["type" => "varbinary(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
|
||||||
"author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of the mail"],
|
"author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of the mail"],
|
||||||
"convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],
|
"convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],
|
||||||
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -893,11 +893,11 @@ return [
|
||||||
"reply" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"reply" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"replied" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"replied" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"unknown" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if sender not in the contact table this is 1"],
|
"unknown" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if sender not in the contact table this is 1"],
|
||||||
"uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"uri" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related mail"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related mail"],
|
||||||
"parent-uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"parent-uri" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related mail"],
|
"parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related mail"],
|
||||||
"thr-parent" => ["type" => "varchar(255)", "comment" => ""],
|
"thr-parent" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
|
"thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time of the private message"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time of the private message"],
|
||||||
],
|
],
|
||||||
|
@ -980,12 +980,12 @@ return [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
"type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"msg" => ["type" => "mediumtext", "comment" => ""],
|
"msg" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
|
||||||
"link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"link" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"iid" => ["type" => "int unsigned", "comment" => ""],
|
"iid" => ["type" => "int unsigned", "comment" => ""],
|
||||||
"parent" => ["type" => "int unsigned", "comment" => ""],
|
"parent" => ["type" => "int unsigned", "comment" => ""],
|
||||||
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
|
||||||
|
@ -1026,7 +1026,7 @@ return [
|
||||||
"oembed" => [
|
"oembed" => [
|
||||||
"comment" => "cache for OEmbed queries",
|
"comment" => "cache for OEmbed queries",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "page url"],
|
"url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "page url"],
|
||||||
"maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => "Maximum width passed to Oembed"],
|
"maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => "Maximum width passed to Oembed"],
|
||||||
"content" => ["type" => "mediumtext", "comment" => "OEmbed data of the page"],
|
"content" => ["type" => "mediumtext", "comment" => "OEmbed data of the page"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
|
||||||
|
@ -1215,7 +1215,7 @@ return [
|
||||||
"target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
|
"target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
|
||||||
"target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
|
"target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
|
||||||
"resource-id" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type"],
|
"resource-id" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type"],
|
||||||
"plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
|
"plink" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["uri-id"],
|
"PRIMARY" => ["uri-id"],
|
||||||
|
@ -1280,7 +1280,7 @@ return [
|
||||||
"target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
|
"target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
|
||||||
"target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
|
"target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
|
||||||
"resource-id" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type"],
|
"resource-id" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type"],
|
||||||
"plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
|
"plink" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["uri-id", "edited"],
|
"PRIMARY" => ["uri-id", "edited"],
|
||||||
|
@ -1315,12 +1315,12 @@ return [
|
||||||
"preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
|
"preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
|
||||||
"description" => ["type" => "text", "comment" => ""],
|
"description" => ["type" => "text", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "comment" => "Name of the media"],
|
"name" => ["type" => "varchar(255)", "comment" => "Name of the media"],
|
||||||
"author-url" => ["type" => "varbinary(255)", "comment" => "URL of the author of the media"],
|
"author-url" => ["type" => "varbinary(383)", "comment" => "URL of the author of the media"],
|
||||||
"author-name" => ["type" => "varchar(255)", "comment" => "Name of the author of the media"],
|
"author-name" => ["type" => "varchar(255)", "comment" => "Name of the author of the media"],
|
||||||
"author-image" => ["type" => "varbinary(255)", "comment" => "Image of the author of the media"],
|
"author-image" => ["type" => "varbinary(383)", "comment" => "Image of the author of the media"],
|
||||||
"publisher-url" => ["type" => "varbinary(255)", "comment" => "URL of the publisher of the media"],
|
"publisher-url" => ["type" => "varbinary(383)", "comment" => "URL of the publisher of the media"],
|
||||||
"publisher-name" => ["type" => "varchar(255)", "comment" => "Name of the publisher of the media"],
|
"publisher-name" => ["type" => "varchar(255)", "comment" => "Name of the publisher of the media"],
|
||||||
"publisher-image" => ["type" => "varbinary(255)", "comment" => "Image of the publisher of the media"],
|
"publisher-image" => ["type" => "varbinary(383)", "comment" => "Image of the publisher of the media"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1564,8 +1564,8 @@ return [
|
||||||
"homepage" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"homepage" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
|
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
|
||||||
"matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
|
"matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
|
||||||
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"thumb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"thumb" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish default profile in local directory"],
|
"publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish default profile in local directory"],
|
||||||
"net-publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish profile in global directory"],
|
"net-publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish profile in global directory"],
|
||||||
],
|
],
|
||||||
|
@ -1599,7 +1599,7 @@ return [
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"callback_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"callback_url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"topic" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"topic" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"push" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
|
"push" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
|
||||||
|
@ -1618,7 +1618,7 @@ return [
|
||||||
"comment" => "registrations requiring admin approval",
|
"comment" => "registrations requiring admin approval",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
|
||||||
"hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"hash" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -1720,7 +1720,7 @@ return [
|
||||||
"fetch_further_information" => ["type" => "tinyint unsigned", "comment" => ""],
|
"fetch_further_information" => ["type" => "tinyint unsigned", "comment" => ""],
|
||||||
"ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
|
"ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
|
||||||
"subhub" => ["type" => "boolean", "comment" => ""],
|
"subhub" => ["type" => "boolean", "comment" => ""],
|
||||||
"hub-verify" => ["type" => "varchar(255)", "comment" => ""],
|
"hub-verify" => ["type" => "varbinary(383)", "comment" => ""],
|
||||||
"protocol" => ["type" => "char(4)", "comment" => "Protocol of the contact"],
|
"protocol" => ["type" => "char(4)", "comment" => "Protocol of the contact"],
|
||||||
"rating" => ["type" => "tinyint", "comment" => "Automatically detected feed poll frequency"],
|
"rating" => ["type" => "tinyint", "comment" => "Automatically detected feed poll frequency"],
|
||||||
"priority" => ["type" => "tinyint unsigned", "comment" => "Feed poll priority"],
|
"priority" => ["type" => "tinyint unsigned", "comment" => "Feed poll priority"],
|
||||||
|
@ -1734,7 +1734,7 @@ return [
|
||||||
"arrived-activity" => [
|
"arrived-activity" => [
|
||||||
"comment" => "Id of arrived activities",
|
"comment" => "Id of arrived activities",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"object-id" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "object id of the incoming activity"],
|
"object-id" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "object id of the incoming activity"],
|
||||||
"received" => ["type" => "datetime", "comment" => "Receiving date"],
|
"received" => ["type" => "datetime", "comment" => "Receiving date"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -1745,7 +1745,7 @@ return [
|
||||||
"fetched-activity" => [
|
"fetched-activity" => [
|
||||||
"comment" => "Id of fetched activities",
|
"comment" => "Id of fetched activities",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"object-id" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "object id of fetched activity"],
|
"object-id" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "object id of fetched activity"],
|
||||||
"received" => ["type" => "datetime", "comment" => "Receiving date"],
|
"received" => ["type" => "datetime", "comment" => "Receiving date"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue