Merge pull request #4479 from annando/db-structure
Improvements to the database structure
This commit is contained in:
commit
dd0147bd01
2
boot.php
2
boot.php
|
@ -39,7 +39,7 @@ define('FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define('FRIENDICA_CODENAME', 'Asparagus');
|
define('FRIENDICA_CODENAME', 'Asparagus');
|
||||||
define('FRIENDICA_VERSION', '3.6-dev');
|
define('FRIENDICA_VERSION', '3.6-dev');
|
||||||
define('DFRN_PROTOCOL_VERSION', '2.23');
|
define('DFRN_PROTOCOL_VERSION', '2.23');
|
||||||
define('DB_UPDATE_VERSION', 1253);
|
define('DB_UPDATE_VERSION', 1254);
|
||||||
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
388
database.sql
388
database.sql
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 3.6-dev (Asparagus)
|
-- Friendica 3.6-dev (Asparagus)
|
||||||
-- DB_UPDATE_VERSION 1253
|
-- DB_UPDATE_VERSION 1254
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@
|
||||||
-- TABLE addon
|
-- TABLE addon
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `addon` (
|
CREATE TABLE IF NOT EXISTS `addon` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`name` varchar(190) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`version` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`version` varchar(50) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`installed` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`installed` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`hidden` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`hidden` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`timestamp` bigint NOT NULL DEFAULT 0 COMMENT '',
|
`timestamp` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `name` (`name`)
|
UNIQUE INDEX `name` (`name`)
|
||||||
|
@ -23,12 +23,12 @@ CREATE TABLE IF NOT EXISTS `addon` (
|
||||||
-- TABLE attach
|
-- TABLE attach
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `attach` (
|
CREATE TABLE IF NOT EXISTS `attach` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`hash` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
`hash` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`filetype` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
`filetype` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`filesize` int NOT NULL DEFAULT 0 COMMENT '',
|
`filesize` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`data` longblob NOT NULL COMMENT '',
|
`data` longblob NOT NULL 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 '',
|
||||||
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
|
@ -57,7 +57,7 @@ CREATE TABLE IF NOT EXISTS `auth_codes` (
|
||||||
CREATE TABLE IF NOT EXISTS `cache` (
|
CREATE TABLE IF NOT EXISTS `cache` (
|
||||||
`k` varbinary(255) NOT NULL COMMENT '',
|
`k` varbinary(255) NOT NULL COMMENT '',
|
||||||
`v` mediumtext COMMENT '',
|
`v` mediumtext COMMENT '',
|
||||||
`expire_mode` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`expire_mode` tinyint unsigned NOT NULL DEFAULT 0 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 '',
|
||||||
PRIMARY KEY(`k`),
|
PRIMARY KEY(`k`),
|
||||||
INDEX `expire_mode_updated` (`expire_mode`,`updated`)
|
INDEX `expire_mode_updated` (`expire_mode`,`updated`)
|
||||||
|
@ -67,10 +67,10 @@ CREATE TABLE IF NOT EXISTS `cache` (
|
||||||
-- TABLE challenge
|
-- TABLE challenge
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `challenge` (
|
CREATE TABLE IF NOT EXISTS `challenge` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`challenge` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`challenge` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`expire` int NOT NULL DEFAULT 0 COMMENT '',
|
`expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`last_update` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`last_update` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
|
@ -85,7 +85,7 @@ CREATE TABLE IF NOT EXISTS `clients` (
|
||||||
`redirect_uri` varchar(200) NOT NULL DEFAULT '' COMMENT '',
|
`redirect_uri` varchar(200) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`name` text COMMENT '',
|
`name` text COMMENT '',
|
||||||
`icon` text COMMENT '',
|
`icon` text COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
PRIMARY KEY(`client_id`)
|
PRIMARY KEY(`client_id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -93,9 +93,9 @@ CREATE TABLE IF NOT EXISTS `clients` (
|
||||||
-- TABLE config
|
-- TABLE config
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `config` (
|
CREATE TABLE IF NOT EXISTS `config` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`cat` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`cat` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`k` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`k` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`v` mediumtext COMMENT '',
|
`v` mediumtext COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `cat_k` (`cat`,`k`)
|
UNIQUE INDEX `cat_k` (`cat`,`k`)
|
||||||
|
@ -105,14 +105,14 @@ CREATE TABLE IF NOT EXISTS `config` (
|
||||||
-- TABLE contact
|
-- TABLE contact
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `contact` (
|
CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`self` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`self` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`remote_self` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`remote_self` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`rel` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`rel` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`network` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`location` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -122,9 +122,9 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`photo` text COMMENT '',
|
`photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`thumb` text COMMENT '',
|
`thumb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`micro` text COMMENT '',
|
`micro` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`site-pubkey` text COMMENT '',
|
`site-pubkey` text COMMENT '',
|
||||||
`issued-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`issued-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -135,11 +135,11 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`pubkey` text COMMENT '',
|
`pubkey` text COMMENT '',
|
||||||
`prvkey` text COMMENT '',
|
`prvkey` text COMMENT '',
|
||||||
`batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`request` text COMMENT '',
|
`request` varchar(255) COMMENT '',
|
||||||
`notify` text COMMENT '',
|
`notify` varchar(255) COMMENT '',
|
||||||
`poll` text COMMENT '',
|
`poll` varchar(255) COMMENT '',
|
||||||
`confirm` text COMMENT '',
|
`confirm` varchar(255) COMMENT '',
|
||||||
`poco` text COMMENT '',
|
`poco` varchar(255) COMMENT '',
|
||||||
`aes_allow` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`aes_allow` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`ret-aes` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`ret-aes` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`usehub` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`usehub` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -153,7 +153,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`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 '',
|
||||||
`term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`priority` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`blocked` boolean NOT NULL DEFAULT '1' COMMENT '',
|
`blocked` boolean NOT NULL DEFAULT '1' COMMENT '',
|
||||||
`readonly` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`readonly` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`writable` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`writable` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -165,13 +165,13 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
`pending` boolean NOT NULL DEFAULT '1' COMMENT '',
|
`pending` boolean NOT NULL DEFAULT '1' COMMENT '',
|
||||||
`rating` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`rating` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`reason` text COMMENT '',
|
`reason` text COMMENT '',
|
||||||
`closeness` tinyint NOT NULL DEFAULT 99 COMMENT '',
|
`closeness` tinyint unsigned NOT NULL DEFAULT 99 COMMENT '',
|
||||||
`info` mediumtext COMMENT '',
|
`info` mediumtext COMMENT '',
|
||||||
`profile-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`profile-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`bdyear` varchar(4) NOT NULL DEFAULT '' COMMENT '',
|
`bdyear` varchar(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
|
`bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
|
||||||
`notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`fetch_further_information` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`fetch_further_information` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`ffi_keyword_blacklist` text COMMENT '',
|
`ffi_keyword_blacklist` text COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `uid_name` (`uid`,`name`(190)),
|
INDEX `uid_name` (`uid`,`name`(190)),
|
||||||
|
@ -179,8 +179,8 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
INDEX `alias_uid` (`alias`(32),`uid`),
|
INDEX `alias_uid` (`alias`(32),`uid`),
|
||||||
INDEX `pending_uid` (`pending`,`uid`),
|
INDEX `pending_uid` (`pending`,`uid`),
|
||||||
INDEX `blocked_uid` (`blocked`,`uid`),
|
INDEX `blocked_uid` (`blocked`,`uid`),
|
||||||
INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`(4),`poll`(64),`archive`),
|
INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
|
||||||
INDEX `uid_network_batch` (`uid`,`network`(4),`batch`(64)),
|
INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
|
||||||
INDEX `addr_uid` (`addr`(32),`uid`),
|
INDEX `addr_uid` (`addr`(32),`uid`),
|
||||||
INDEX `nurl_uid` (`nurl`(32),`uid`),
|
INDEX `nurl_uid` (`nurl`(32),`uid`),
|
||||||
INDEX `nick_uid` (`nick`(32),`uid`),
|
INDEX `nick_uid` (`nick`(32),`uid`),
|
||||||
|
@ -192,10 +192,10 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
||||||
-- TABLE conv
|
-- TABLE conv
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `conv` (
|
CREATE TABLE IF NOT EXISTS `conv` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`recips` text COMMENT '',
|
`recips` text COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`creator` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`creator` varchar(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 '',
|
||||||
`updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
|
@ -212,7 +212,7 @@ CREATE TABLE IF NOT EXISTS `conversation` (
|
||||||
`reply-to-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`reply-to-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`conversation-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`conversation-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`conversation-href` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`conversation-href` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`protocol` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`protocol` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`source` mediumtext COMMENT '',
|
`source` mediumtext COMMENT '',
|
||||||
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
PRIMARY KEY(`item-uri`),
|
PRIMARY KEY(`item-uri`),
|
||||||
|
@ -224,10 +224,10 @@ CREATE TABLE IF NOT EXISTS `conversation` (
|
||||||
-- TABLE event
|
-- TABLE event
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `event` (
|
CREATE TABLE IF NOT EXISTS `event` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`cid` int NOT NULL DEFAULT 0 COMMENT '',
|
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`uri` varchar(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 '',
|
||||||
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
|
@ -236,7 +236,7 @@ CREATE TABLE IF NOT EXISTS `event` (
|
||||||
`summary` text COMMENT '',
|
`summary` text COMMENT '',
|
||||||
`desc` text COMMENT '',
|
`desc` text COMMENT '',
|
||||||
`location` text COMMENT '',
|
`location` text COMMENT '',
|
||||||
`type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`type` varchar(20) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nofinish` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`nofinish` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`adjust` boolean NOT NULL DEFAULT '1' COMMENT '',
|
`adjust` boolean NOT NULL DEFAULT '1' COMMENT '',
|
||||||
`ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -252,7 +252,7 @@ CREATE TABLE IF NOT EXISTS `event` (
|
||||||
-- TABLE fcontact
|
-- TABLE fcontact
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `fcontact` (
|
CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -264,8 +264,8 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||||
`notify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`notify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`poll` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`poll` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`confirm` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`confirm` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`priority` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`network` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`alias` varchar(255) 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 '',
|
||||||
|
@ -278,9 +278,9 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||||
-- TABLE fsuggest
|
-- TABLE fsuggest
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `fsuggest` (
|
CREATE TABLE IF NOT EXISTS `fsuggest` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`cid` int 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` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -294,9 +294,9 @@ CREATE TABLE IF NOT EXISTS `fsuggest` (
|
||||||
-- TABLE gcign
|
-- TABLE gcign
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `gcign` (
|
CREATE TABLE IF NOT EXISTS `gcign` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`gcid` int NOT NULL DEFAULT 0 COMMENT '',
|
`gcid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `uid` (`uid`),
|
INDEX `uid` (`uid`),
|
||||||
INDEX `gcid` (`gcid`)
|
INDEX `gcid` (`gcid`)
|
||||||
|
@ -306,7 +306,7 @@ CREATE TABLE IF NOT EXISTS `gcign` (
|
||||||
-- TABLE gcontact
|
-- TABLE gcontact
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `gcontact` (
|
CREATE TABLE IF NOT EXISTS `gcontact` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -326,18 +326,18 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
|
||||||
`contact-type` tinyint NOT NULL DEFAULT -1 COMMENT '',
|
`contact-type` tinyint NOT NULL DEFAULT -1 COMMENT '',
|
||||||
`hide` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`hide` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`nsfw` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`nsfw` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`network` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`notify` text COMMENT '',
|
`notify` varchar(255) COMMENT '',
|
||||||
`alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`generation` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`generation` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`server_url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`server_url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `nurl` (`nurl`(190)),
|
UNIQUE INDEX `nurl` (`nurl`(190)),
|
||||||
INDEX `name` (`name`(64)),
|
INDEX `name` (`name`(64)),
|
||||||
INDEX `nick` (`nick`(32)),
|
INDEX `nick` (`nick`(32)),
|
||||||
INDEX `addr` (`addr`(64)),
|
INDEX `addr` (`addr`(64)),
|
||||||
INDEX `hide_network_updated` (`hide`,`network`(4),`updated`),
|
INDEX `hide_network_updated` (`hide`,`network`,`updated`),
|
||||||
INDEX `updated` (`updated`)
|
INDEX `updated` (`updated`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -345,11 +345,11 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
|
||||||
-- TABLE glink
|
-- TABLE glink
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `glink` (
|
CREATE TABLE IF NOT EXISTS `glink` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`cid` int NOT NULL DEFAULT 0 COMMENT '',
|
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`gcid` int NOT NULL DEFAULT 0 COMMENT '',
|
`gcid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`zcid` int NOT NULL DEFAULT 0 COMMENT '',
|
`zcid` int unsigned NOT NULL DEFAULT 0 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 '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
|
UNIQUE INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
|
||||||
|
@ -360,8 +360,8 @@ CREATE TABLE IF NOT EXISTS `glink` (
|
||||||
-- TABLE group
|
-- TABLE group
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `group` (
|
CREATE TABLE IF NOT EXISTS `group` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`visible` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`visible` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -373,9 +373,9 @@ CREATE TABLE IF NOT EXISTS `group` (
|
||||||
-- TABLE group_member
|
-- TABLE group_member
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `group_member` (
|
CREATE TABLE IF NOT EXISTS `group_member` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`gid` int NOT NULL DEFAULT 0 COMMENT '',
|
`gid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`contact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `contactid` (`contact-id`),
|
INDEX `contactid` (`contact-id`),
|
||||||
UNIQUE INDEX `gid_contactid` (`gid`,`contact-id`)
|
UNIQUE INDEX `gid_contactid` (`gid`,`contact-id`)
|
||||||
|
@ -385,17 +385,17 @@ CREATE TABLE IF NOT EXISTS `group_member` (
|
||||||
-- TABLE gserver
|
-- TABLE gserver
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `gserver` (
|
CREATE TABLE IF NOT EXISTS `gserver` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`nurl` varchar(255) 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 '',
|
||||||
`register_policy` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`register_policy` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`registered-users` int NOT NULL DEFAULT 0 COMMENT '',
|
`registered-users` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`poco` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`poco` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`noscrape` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`noscrape` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`network` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`platform` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`platform` varchar(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 '',
|
||||||
`last_poco_query` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`last_poco_query` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
|
@ -409,23 +409,23 @@ CREATE TABLE IF NOT EXISTS `gserver` (
|
||||||
-- TABLE hook
|
-- TABLE hook
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `hook` (
|
CREATE TABLE IF NOT EXISTS `hook` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`hook` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`hook` varbinary(100) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`file` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`file` varbinary(200) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`function` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`function` varbinary(200) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`priority` smallint NOT NULL DEFAULT 0 COMMENT '',
|
`priority` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `hook_file_function` (`hook`(50),`file`(80),`function`(60))
|
UNIQUE INDEX `hook_file_function` (`hook`,`file`,`function`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE intro
|
-- TABLE intro
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `intro` (
|
CREATE TABLE IF NOT EXISTS `intro` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`fid` int NOT NULL DEFAULT 0 COMMENT '',
|
`fid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`contact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`note` text COMMENT '',
|
`note` text COMMENT '',
|
||||||
|
@ -440,16 +440,16 @@ CREATE TABLE IF NOT EXISTS `intro` (
|
||||||
-- TABLE item
|
-- TABLE item
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `item` (
|
CREATE TABLE IF NOT EXISTS `item` (
|
||||||
`id` int NOT NULL auto_increment,
|
`id` int unsigned NOT NULL auto_increment,
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`contact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`gcontact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`gcontact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`type` varchar(20) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`wall` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`wall` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`gravity` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`gravity` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`parent` int NOT NULL DEFAULT 0 COMMENT '',
|
`parent` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`extid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`extid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`thr-parent` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`thr-parent` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -458,26 +458,26 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||||
`commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`owner-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`owner-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`owner-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`owner-link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`owner-link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`owner-avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`owner-avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`author-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`author-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`author-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`author-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`author-link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`author-link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`author-avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`author-avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`body` mediumtext COMMENT '',
|
`body` mediumtext COMMENT '',
|
||||||
`app` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`app` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`verb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`verb` varchar(100) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`object-type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`object-type` varchar(100) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`object` text COMMENT '',
|
`object` text COMMENT '',
|
||||||
`target-type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`target-type` varchar(100) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`target` text COMMENT '',
|
`target` text COMMENT '',
|
||||||
`postopts` text COMMENT '',
|
`postopts` text COMMENT '',
|
||||||
`plink` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`plink` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`resource-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`event-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`event-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`tag` mediumtext COMMENT '',
|
`tag` mediumtext COMMENT '',
|
||||||
`attach` mediumtext COMMENT '',
|
`attach` mediumtext COMMENT '',
|
||||||
`inform` mediumtext COMMENT '',
|
`inform` mediumtext COMMENT '',
|
||||||
|
@ -498,9 +498,9 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||||
`unseen` boolean NOT NULL DEFAULT '1' COMMENT '',
|
`unseen` boolean NOT NULL DEFAULT '1' COMMENT '',
|
||||||
`deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`origin` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`origin` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`forum_mode` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`forum_mode` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`mention` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`mention` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`network` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`rendered-hash` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
`rendered-hash` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`rendered-html` mediumtext COMMENT '',
|
`rendered-html` mediumtext COMMENT '',
|
||||||
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -514,18 +514,18 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||||
INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
|
INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
|
||||||
INDEX `uid_created` (`uid`,`created`),
|
INDEX `uid_created` (`uid`,`created`),
|
||||||
INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
|
INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
|
||||||
INDEX `uid_network_received` (`uid`,`network`(4),`received`),
|
INDEX `uid_network_received` (`uid`,`network`,`received`),
|
||||||
INDEX `uid_network_commented` (`uid`,`network`(4),`commented`),
|
INDEX `uid_network_commented` (`uid`,`network`,`commented`),
|
||||||
INDEX `uid_thrparent` (`uid`,`thr-parent`(190)),
|
INDEX `uid_thrparent` (`uid`,`thr-parent`(190)),
|
||||||
INDEX `uid_parenturi` (`uid`,`parent-uri`(190)),
|
INDEX `uid_parenturi` (`uid`,`parent-uri`(190)),
|
||||||
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
|
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
|
||||||
INDEX `authorid_created` (`author-id`,`created`),
|
INDEX `authorid_created` (`author-id`,`created`),
|
||||||
INDEX `ownerid` (`owner-id`),
|
INDEX `ownerid` (`owner-id`),
|
||||||
INDEX `uid_uri` (`uid`,`uri`(190)),
|
INDEX `uid_uri` (`uid`,`uri`(190)),
|
||||||
INDEX `resource-id` (`resource-id`(191)),
|
INDEX `resource-id` (`resource-id`),
|
||||||
INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)),
|
INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)),
|
||||||
INDEX `uid_type_changed` (`uid`,`type`(190),`changed`),
|
INDEX `uid_type_changed` (`uid`,`type`,`changed`),
|
||||||
INDEX `contactid_verb` (`contact-id`,`verb`(190)),
|
INDEX `contactid_verb` (`contact-id`,`verb`),
|
||||||
INDEX `deleted_changed` (`deleted`,`changed`),
|
INDEX `deleted_changed` (`deleted`,`changed`),
|
||||||
INDEX `uid_wall_changed` (`uid`,`wall`,`changed`),
|
INDEX `uid_wall_changed` (`uid`,`wall`,`changed`),
|
||||||
INDEX `uid_eventid` (`uid`,`event-id`),
|
INDEX `uid_eventid` (`uid`,`event-id`),
|
||||||
|
@ -537,10 +537,10 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||||
-- TABLE locks
|
-- TABLE locks
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `locks` (
|
CREATE TABLE IF NOT EXISTS `locks` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`name` varchar(128) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(128) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`locked` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`locked` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`pid` int NOT NULL DEFAULT 0 COMMENT '',
|
`pid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -548,14 +548,14 @@ CREATE TABLE IF NOT EXISTS `locks` (
|
||||||
-- TABLE mail
|
-- TABLE mail
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `mail` (
|
CREATE TABLE IF NOT EXISTS `mail` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`from-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`from-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`from-url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`from-url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`contact-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`contact-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`convid` int NOT NULL DEFAULT 0 COMMENT '',
|
`convid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`body` mediumtext COMMENT '',
|
`body` mediumtext COMMENT '',
|
||||||
`seen` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`seen` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -577,8 +577,8 @@ CREATE TABLE IF NOT EXISTS `mail` (
|
||||||
-- TABLE mailacct
|
-- TABLE mailacct
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `mailacct` (
|
CREATE TABLE IF NOT EXISTS `mailacct` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`server` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`server` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`port` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`port` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`ssltype` varchar(16) NOT NULL DEFAULT '' COMMENT '',
|
`ssltype` varchar(16) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -586,7 +586,7 @@ CREATE TABLE IF NOT EXISTS `mailacct` (
|
||||||
`user` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`user` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`pass` text COMMENT '',
|
`pass` text COMMENT '',
|
||||||
`reply_to` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`reply_to` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`action` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`action` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`movetofolder` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`movetofolder` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
|
@ -597,9 +597,9 @@ CREATE TABLE IF NOT EXISTS `mailacct` (
|
||||||
-- TABLE manage
|
-- TABLE manage
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `manage` (
|
CREATE TABLE IF NOT EXISTS `manage` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`mid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`mid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `uid_mid` (`uid`,`mid`)
|
UNIQUE INDEX `uid_mid` (`uid`,`mid`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
@ -608,21 +608,21 @@ CREATE TABLE IF NOT EXISTS `manage` (
|
||||||
-- TABLE notify
|
-- TABLE notify
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `notify` (
|
CREATE TABLE IF NOT EXISTS `notify` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`hash` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
`hash` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`type` smallint 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` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`photo` varchar(255) 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 NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`iid` int NOT NULL DEFAULT 0 COMMENT '',
|
`iid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`parent` int NOT NULL DEFAULT 0 COMMENT '',
|
`parent` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`seen` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`seen` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`verb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`verb` varchar(100) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`otype` varchar(16) NOT NULL DEFAULT '' COMMENT '',
|
`otype` varchar(10) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`name_cache` tinytext COMMENT '',
|
`name_cache` tinytext COMMENT '',
|
||||||
`msg_cache` mediumtext COMMENT '',
|
`msg_cache` mediumtext COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
@ -636,11 +636,11 @@ CREATE TABLE IF NOT EXISTS `notify` (
|
||||||
-- TABLE notify-threads
|
-- TABLE notify-threads
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `notify-threads` (
|
CREATE TABLE IF NOT EXISTS `notify-threads` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`notify-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`notify-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`master-parent-item` int NOT NULL DEFAULT 0 COMMENT '',
|
`master-parent-item` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`parent-item` int NOT NULL DEFAULT 0 COMMENT '',
|
`parent-item` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`receiver-uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`receiver-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -649,7 +649,7 @@ CREATE TABLE IF NOT EXISTS `notify-threads` (
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `oembed` (
|
CREATE TABLE IF NOT EXISTS `oembed` (
|
||||||
`url` varbinary(255) NOT NULL COMMENT '',
|
`url` varbinary(255) NOT NULL COMMENT '',
|
||||||
`maxwidth` mediumint NOT NULL COMMENT '',
|
`maxwidth` mediumint unsigned NOT NULL COMMENT '',
|
||||||
`content` mediumtext COMMENT '',
|
`content` mediumtext 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(`url`,`maxwidth`),
|
PRIMARY KEY(`url`,`maxwidth`),
|
||||||
|
@ -673,10 +673,10 @@ CREATE TABLE IF NOT EXISTS `parsed_url` (
|
||||||
-- TABLE participation
|
-- TABLE participation
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `participation` (
|
CREATE TABLE IF NOT EXISTS `participation` (
|
||||||
`iid` int NOT NULL COMMENT '',
|
`iid` int unsigned NOT NULL COMMENT '',
|
||||||
`server` varchar(60) NOT NULL COMMENT '',
|
`server` varchar(60) NOT NULL COMMENT '',
|
||||||
`cid` int NOT NULL COMMENT '',
|
`cid` int unsigned NOT NULL COMMENT '',
|
||||||
`fid` int NOT NULL COMMENT '',
|
`fid` int unsigned NOT NULL COMMENT '',
|
||||||
PRIMARY KEY(`iid`,`server`)
|
PRIMARY KEY(`iid`,`server`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -684,10 +684,10 @@ CREATE TABLE IF NOT EXISTS `participation` (
|
||||||
-- TABLE pconfig
|
-- TABLE pconfig
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `pconfig` (
|
CREATE TABLE IF NOT EXISTS `pconfig` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`cat` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`cat` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`k` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`k` varbinary(100) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`v` mediumtext COMMENT '',
|
`v` mediumtext COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `uid_cat_k` (`uid`,`cat`,`k`)
|
UNIQUE INDEX `uid_cat_k` (`uid`,`cat`,`k`)
|
||||||
|
@ -697,23 +697,23 @@ CREATE TABLE IF NOT EXISTS `pconfig` (
|
||||||
-- TABLE photo
|
-- TABLE photo
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `photo` (
|
CREATE TABLE IF NOT EXISTS `photo` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`contact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`guid` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
`guid` char(16) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`resource-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`resource-id` char(32) 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 '',
|
||||||
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`desc` text COMMENT '',
|
`desc` text COMMENT '',
|
||||||
`album` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`album` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`type` varchar(128) NOT NULL DEFAULT 'image/jpeg',
|
`type` varchar(30) NOT NULL DEFAULT 'image/jpeg',
|
||||||
`height` smallint NOT NULL DEFAULT 0 COMMENT '',
|
`height` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`width` smallint NOT NULL DEFAULT 0 COMMENT '',
|
`width` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`datasize` int NOT NULL DEFAULT 0 COMMENT '',
|
`datasize` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`data` mediumblob NOT NULL COMMENT '',
|
`data` mediumblob NOT NULL COMMENT '',
|
||||||
`scale` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`scale` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`profile` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`profile` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`allow_cid` mediumtext COMMENT '',
|
`allow_cid` mediumtext COMMENT '',
|
||||||
`allow_gid` mediumtext COMMENT '',
|
`allow_gid` mediumtext COMMENT '',
|
||||||
|
@ -724,16 +724,16 @@ CREATE TABLE IF NOT EXISTS `photo` (
|
||||||
INDEX `uid_contactid` (`uid`,`contact-id`),
|
INDEX `uid_contactid` (`uid`,`contact-id`),
|
||||||
INDEX `uid_profile` (`uid`,`profile`),
|
INDEX `uid_profile` (`uid`,`profile`),
|
||||||
INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
|
INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
|
||||||
INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`(64),`created`),
|
INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`,`created`),
|
||||||
INDEX `resource-id` (`resource-id`(64))
|
INDEX `resource-id` (`resource-id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE poll
|
-- TABLE poll
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `poll` (
|
CREATE TABLE IF NOT EXISTS `poll` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`q0` text COMMENT '',
|
`q0` text COMMENT '',
|
||||||
`q1` text COMMENT '',
|
`q1` text COMMENT '',
|
||||||
`q2` text COMMENT '',
|
`q2` text COMMENT '',
|
||||||
|
@ -752,9 +752,9 @@ CREATE TABLE IF NOT EXISTS `poll` (
|
||||||
-- TABLE poll_result
|
-- TABLE poll_result
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `poll_result` (
|
CREATE TABLE IF NOT EXISTS `poll_result` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`poll_id` int NOT NULL DEFAULT 0,
|
`poll_id` int unsigned NOT NULL DEFAULT 0,
|
||||||
`choice` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`choice` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `poll_id` (`poll_id`)
|
INDEX `poll_id` (`poll_id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
@ -763,7 +763,7 @@ CREATE TABLE IF NOT EXISTS `poll_result` (
|
||||||
-- TABLE process
|
-- TABLE process
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `process` (
|
CREATE TABLE IF NOT EXISTS `process` (
|
||||||
`pid` int NOT NULL COMMENT '',
|
`pid` int unsigned NOT NULL COMMENT '',
|
||||||
`command` varbinary(32) NOT NULL DEFAULT '' COMMENT '',
|
`command` varbinary(32) 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 '',
|
||||||
PRIMARY KEY(`pid`),
|
PRIMARY KEY(`pid`),
|
||||||
|
@ -774,8 +774,8 @@ CREATE TABLE IF NOT EXISTS `process` (
|
||||||
-- TABLE profile
|
-- TABLE profile
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `profile` (
|
CREATE TABLE IF NOT EXISTS `profile` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`profile-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`profile-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`is-default` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`is-default` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`hide-friends` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`hide-friends` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
|
@ -824,12 +824,12 @@ CREATE TABLE IF NOT EXISTS `profile` (
|
||||||
-- TABLE profile_check
|
-- TABLE profile_check
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `profile_check` (
|
CREATE TABLE IF NOT EXISTS `profile_check` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`cid` int NOT NULL DEFAULT 0 COMMENT '',
|
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`dfrn_id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`dfrn_id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`sec` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`sec` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`expire` int NOT NULL DEFAULT 0 COMMENT '',
|
`expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -837,12 +837,12 @@ CREATE TABLE IF NOT EXISTS `profile_check` (
|
||||||
-- TABLE push_subscriber
|
-- TABLE push_subscriber
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `push_subscriber` (
|
CREATE TABLE IF NOT EXISTS `push_subscriber` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint 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` varchar(255) 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 '',
|
`push` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`secret` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`secret` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
|
@ -852,9 +852,9 @@ CREATE TABLE IF NOT EXISTS `push_subscriber` (
|
||||||
-- TABLE queue
|
-- TABLE queue
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `queue` (
|
CREATE TABLE IF NOT EXISTS `queue` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`cid` int NOT NULL DEFAULT 0 COMMENT 'Message receiver',
|
`cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Message receiver',
|
||||||
`network` varchar(32) NOT NULL DEFAULT '' COMMENT 'Receiver\'s network',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT 'Receiver\'s network',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Unique GUID of the message',
|
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Unique GUID of the message',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date, when the message was created',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date, when the message was created',
|
||||||
`last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last trial',
|
`last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last trial',
|
||||||
|
@ -871,10 +871,10 @@ CREATE TABLE IF NOT EXISTS `queue` (
|
||||||
-- TABLE register
|
-- TABLE register
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `register` (
|
CREATE TABLE IF NOT EXISTS `register` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`hash` varchar(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 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 '',
|
||||||
`language` varchar(16) NOT NULL DEFAULT '' COMMENT '',
|
`language` varchar(16) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`note` text COMMENT '',
|
`note` text COMMENT '',
|
||||||
|
@ -885,8 +885,8 @@ CREATE TABLE IF NOT EXISTS `register` (
|
||||||
-- TABLE search
|
-- TABLE search
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `search` (
|
CREATE TABLE IF NOT EXISTS `search` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `uid` (`uid`)
|
INDEX `uid` (`uid`)
|
||||||
|
@ -896,10 +896,10 @@ CREATE TABLE IF NOT EXISTS `search` (
|
||||||
-- TABLE session
|
-- TABLE session
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `session` (
|
CREATE TABLE IF NOT EXISTS `session` (
|
||||||
`id` bigint NOT NULL auto_increment COMMENT '',
|
`id` bigint unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`sid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`sid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`data` text COMMENT '',
|
`data` text COMMENT '',
|
||||||
`expire` int NOT NULL DEFAULT 0 COMMENT '',
|
`expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `sid` (`sid`(64)),
|
INDEX `sid` (`sid`(64)),
|
||||||
INDEX `expire` (`expire`)
|
INDEX `expire` (`expire`)
|
||||||
|
@ -909,8 +909,8 @@ CREATE TABLE IF NOT EXISTS `session` (
|
||||||
-- TABLE sign
|
-- TABLE sign
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `sign` (
|
CREATE TABLE IF NOT EXISTS `sign` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`iid` int NOT NULL DEFAULT 0 COMMENT '',
|
`iid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`signed_text` mediumtext COMMENT '',
|
`signed_text` mediumtext COMMENT '',
|
||||||
`signature` text COMMENT '',
|
`signature` text COMMENT '',
|
||||||
`signer` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`signer` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -922,18 +922,18 @@ CREATE TABLE IF NOT EXISTS `sign` (
|
||||||
-- TABLE term
|
-- TABLE term
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `term` (
|
CREATE TABLE IF NOT EXISTS `term` (
|
||||||
`tid` int NOT NULL auto_increment COMMENT '',
|
`tid` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`oid` int NOT NULL DEFAULT 0 COMMENT '',
|
`oid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`otype` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`otype` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`type` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(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 '',
|
||||||
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`aid` int NOT NULL DEFAULT 0 COMMENT '',
|
`aid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
PRIMARY KEY(`tid`),
|
PRIMARY KEY(`tid`),
|
||||||
INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`(32)),
|
INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`(32)),
|
||||||
INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
|
INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
|
||||||
|
@ -945,12 +945,12 @@ CREATE TABLE IF NOT EXISTS `term` (
|
||||||
-- TABLE thread
|
-- TABLE thread
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `thread` (
|
CREATE TABLE IF NOT EXISTS `thread` (
|
||||||
`iid` int NOT NULL DEFAULT 0 COMMENT '',
|
`iid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
`contact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`gcontact-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`gcontact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`owner-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`author-id` int NOT NULL DEFAULT 0 COMMENT '',
|
`author-id` int unsigned NOT NULL DEFAULT 0 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 '',
|
||||||
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
|
@ -968,9 +968,9 @@ CREATE TABLE IF NOT EXISTS `thread` (
|
||||||
`unseen` boolean NOT NULL DEFAULT '1' COMMENT '',
|
`unseen` boolean NOT NULL DEFAULT '1' COMMENT '',
|
||||||
`deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`origin` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`origin` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`forum_mode` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`forum_mode` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`mention` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`mention` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`network` varchar(32) NOT NULL DEFAULT '' COMMENT '',
|
`network` char(4) NOT NULL DEFAULT '' COMMENT '',
|
||||||
PRIMARY KEY(`iid`),
|
PRIMARY KEY(`iid`),
|
||||||
INDEX `uid_network_commented` (`uid`,`network`,`commented`),
|
INDEX `uid_network_commented` (`uid`,`network`,`commented`),
|
||||||
INDEX `uid_network_created` (`uid`,`network`,`created`),
|
INDEX `uid_network_created` (`uid`,`network`,`created`),
|
||||||
|
@ -994,7 +994,7 @@ CREATE TABLE IF NOT EXISTS `tokens` (
|
||||||
`client_id` varchar(20) NOT NULL DEFAULT '',
|
`client_id` varchar(20) NOT NULL DEFAULT '',
|
||||||
`expires` int NOT NULL DEFAULT 0 COMMENT '',
|
`expires` int NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`scope` varchar(200) NOT NULL DEFAULT '' COMMENT '',
|
`scope` varchar(200) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`uid` mediumint NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
|
@ -1002,8 +1002,8 @@ CREATE TABLE IF NOT EXISTS `tokens` (
|
||||||
-- TABLE user
|
-- TABLE user
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `user` (
|
CREATE TABLE IF NOT EXISTS `user` (
|
||||||
`uid` mediumint NOT NULL auto_increment COMMENT '',
|
`uid` mediumint unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`parent-uid` mediumint NOT NULL DEFAULT 0 COMMENT 'The parent user that has full control about this user',
|
`parent-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'The parent user that has full control about this user',
|
||||||
`guid` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
`guid` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`username` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`username` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
|
@ -1028,20 +1028,20 @@ CREATE TABLE IF NOT EXISTS `user` (
|
||||||
`hidewall` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`hidewall` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`blocktags` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`blocktags` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`unkmail` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`unkmail` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`cntunkmail` int NOT NULL DEFAULT 10 COMMENT '',
|
`cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '',
|
||||||
`notify-flags` smallint unsigned NOT NULL DEFAULT 65535 COMMENT '',
|
`notify-flags` smallint unsigned NOT NULL DEFAULT 65535 COMMENT '',
|
||||||
`page-flags` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`page-flags` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`account-type` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
`account-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`prvnets` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`prvnets` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`pwdreset` varchar(255) COMMENT 'Password reset request token',
|
`pwdreset` varchar(255) COMMENT 'Password reset request token',
|
||||||
`pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
|
`pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
|
||||||
`maxreq` int NOT NULL DEFAULT 10 COMMENT '',
|
`maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '',
|
||||||
`expire` int NOT NULL DEFAULT 0 COMMENT '',
|
`expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`account_removed` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`account_removed` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
`expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
|
||||||
`def_gid` int NOT NULL DEFAULT 0 COMMENT '',
|
`def_gid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
`allow_cid` mediumtext COMMENT '',
|
`allow_cid` mediumtext COMMENT '',
|
||||||
`allow_gid` mediumtext COMMENT '',
|
`allow_gid` mediumtext COMMENT '',
|
||||||
`deny_cid` mediumtext COMMENT '',
|
`deny_cid` mediumtext COMMENT '',
|
||||||
|
@ -1055,7 +1055,7 @@ CREATE TABLE IF NOT EXISTS `user` (
|
||||||
-- TABLE userd
|
-- TABLE userd
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `userd` (
|
CREATE TABLE IF NOT EXISTS `userd` (
|
||||||
`id` int NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`username` varchar(255) NOT NULL COMMENT '',
|
`username` varchar(255) NOT NULL COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
INDEX `username` (`username`(32))
|
INDEX `username` (`username`(32))
|
||||||
|
@ -1065,11 +1065,11 @@ CREATE TABLE IF NOT EXISTS `userd` (
|
||||||
-- TABLE workerqueue
|
-- TABLE workerqueue
|
||||||
--
|
--
|
||||||
CREATE TABLE IF NOT EXISTS `workerqueue` (
|
CREATE TABLE IF NOT EXISTS `workerqueue` (
|
||||||
`id` int NOT NULL auto_increment COMMENT 'Auto incremented worker task id',
|
`id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented worker task id',
|
||||||
`parameter` mediumblob COMMENT 'Task command',
|
`parameter` mediumblob COMMENT 'Task command',
|
||||||
`priority` tinyint NOT NULL DEFAULT 0 COMMENT 'Task priority',
|
`priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Task priority',
|
||||||
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
|
`created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
|
||||||
`pid` int NOT NULL DEFAULT 0 COMMENT 'Process id of the worker',
|
`pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process id of the worker',
|
||||||
`executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Execution date',
|
`executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Execution date',
|
||||||
`done` boolean NOT NULL DEFAULT '0' COMMENT 'Marked when the task was done, will be deleted later',
|
`done` boolean NOT NULL DEFAULT '0' COMMENT 'Marked when the task was done, will be deleted later',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
|
|
@ -131,8 +131,8 @@ class DBStructure
|
||||||
if (DBM::is_result($structures)) {
|
if (DBM::is_result($structures)) {
|
||||||
foreach ($structures AS $field) {
|
foreach ($structures AS $field) {
|
||||||
// Replace the default size values so that we don't have to define them
|
// Replace the default size values so that we don't have to define them
|
||||||
$search = ['tinyint(1)', 'tinyint(4)', 'smallint(5) unsigned', 'smallint(6)', 'mediumint(9)', 'bigint(20)', 'int(11)'];
|
$search = ['tinyint(1)', 'tinyint(3) unsigned', 'tinyint(4)', 'smallint(5) unsigned', 'smallint(6)', 'mediumint(8) unsigned', 'mediumint(9)', 'bigint(20)', 'int(10) unsigned', 'int(11)'];
|
||||||
$replace = ['boolean', 'tinyint', 'smallint unsigned', 'smallint', 'mediumint', 'bigint', 'int'];
|
$replace = ['boolean', 'tinyint unsigned', 'tinyint', 'smallint unsigned', 'smallint', 'mediumint unsigned', 'mediumint', 'bigint', 'int unsigned', 'int'];
|
||||||
$field["Type"] = str_replace($search, $replace, $field["Type"]);
|
$field["Type"] = str_replace($search, $replace, $field["Type"]);
|
||||||
|
|
||||||
$fielddata[$field["Field"]]["type"] = $field["Type"];
|
$fielddata[$field["Field"]]["type"] = $field["Type"];
|
||||||
|
@ -664,12 +664,12 @@ class DBStructure
|
||||||
$database["addon"] = [
|
$database["addon"] = [
|
||||||
"comment" => "registered addons",
|
"comment" => "registered addons",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "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(190)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"version" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"version" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"installed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"installed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"timestamp" => ["type" => "bigint", "not null" => "1", "default" => "0", "comment" => ""],
|
"timestamp" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"plugin_admin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"plugin_admin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -680,12 +680,12 @@ class DBStructure
|
||||||
$database["attach"] = [
|
$database["attach"] = [
|
||||||
"comment" => "file attachments",
|
"comment" => "file attachments",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
"hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"filetype" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
"filetype" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"filesize" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"filesize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"data" => ["type" => "longblob", "not null" => "1", "comment" => ""],
|
"data" => ["type" => "longblob", "not null" => "1", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -716,7 +716,7 @@ class DBStructure
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"k" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => ""],
|
"k" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => ""],
|
||||||
"v" => ["type" => "mediumtext", "comment" => ""],
|
"v" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"expire_mode" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"expire_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -727,10 +727,10 @@ class DBStructure
|
||||||
$database["challenge"] = [
|
$database["challenge"] = [
|
||||||
"comment" => "",
|
"comment" => "",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"challenge" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"challenge" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"expire" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"last_update" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"last_update" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
],
|
],
|
||||||
|
@ -746,7 +746,7 @@ class DBStructure
|
||||||
"redirect_uri" => ["type" => "varchar(200)", "not null" => "1", "default" => "", "comment" => ""],
|
"redirect_uri" => ["type" => "varchar(200)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"name" => ["type" => "text", "comment" => ""],
|
"name" => ["type" => "text", "comment" => ""],
|
||||||
"icon" => ["type" => "text", "comment" => ""],
|
"icon" => ["type" => "text", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["client_id"],
|
"PRIMARY" => ["client_id"],
|
||||||
|
@ -755,9 +755,9 @@ class DBStructure
|
||||||
$database["config"] = [
|
$database["config"] = [
|
||||||
"comment" => "main configuration storage",
|
"comment" => "main configuration storage",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"cat" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"cat" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"k" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"k" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"v" => ["type" => "mediumtext", "comment" => ""],
|
"v" => ["type" => "mediumtext", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -768,14 +768,14 @@ class DBStructure
|
||||||
$database["contact"] = [
|
$database["contact"] = [
|
||||||
"comment" => "contact table",
|
"comment" => "contact table",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"remote_self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"remote_self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"rel" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"rel" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"network" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -785,9 +785,9 @@ class DBStructure
|
||||||
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"photo" => ["type" => "text", "comment" => ""],
|
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"thumb" => ["type" => "text", "comment" => ""],
|
"thumb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"micro" => ["type" => "text", "comment" => ""],
|
"micro" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"site-pubkey" => ["type" => "text", "comment" => ""],
|
"site-pubkey" => ["type" => "text", "comment" => ""],
|
||||||
"issued-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"issued-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -798,11 +798,11 @@ class DBStructure
|
||||||
"pubkey" => ["type" => "text", "comment" => ""],
|
"pubkey" => ["type" => "text", "comment" => ""],
|
||||||
"prvkey" => ["type" => "text", "comment" => ""],
|
"prvkey" => ["type" => "text", "comment" => ""],
|
||||||
"batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"request" => ["type" => "text", "comment" => ""],
|
"request" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"notify" => ["type" => "text", "comment" => ""],
|
"notify" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"poll" => ["type" => "text", "comment" => ""],
|
"poll" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"confirm" => ["type" => "text", "comment" => ""],
|
"confirm" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"poco" => ["type" => "text", "comment" => ""],
|
"poco" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"aes_allow" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"aes_allow" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"ret-aes" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"ret-aes" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"usehub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"usehub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -816,7 +816,7 @@ class DBStructure
|
||||||
"avatar-date" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"avatar-date" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"term-date" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"term-date" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"last-item" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"last-item" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"priority" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"blocked" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
"blocked" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
||||||
"readonly" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"readonly" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"writable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"writable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -828,13 +828,13 @@ class DBStructure
|
||||||
"pending" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
"pending" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
||||||
"rating" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"rating" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"reason" => ["type" => "text", "comment" => ""],
|
"reason" => ["type" => "text", "comment" => ""],
|
||||||
"closeness" => ["type" => "tinyint", "not null" => "1", "default" => "99", "comment" => ""],
|
"closeness" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "99", "comment" => ""],
|
||||||
"info" => ["type" => "mediumtext", "comment" => ""],
|
"info" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"profile-id" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"profile-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"bdyear" => ["type" => "varchar(4)", "not null" => "1", "default" => "", "comment" => ""],
|
"bdyear" => ["type" => "varchar(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"bd" => ["type" => "date", "not null" => "1", "default" => "0001-01-01", "comment" => ""],
|
"bd" => ["type" => "date", "not null" => "1", "default" => "0001-01-01", "comment" => ""],
|
||||||
"notify_new_posts" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"notify_new_posts" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"fetch_further_information" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"fetch_further_information" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"ffi_keyword_blacklist" => ["type" => "text", "comment" => ""],
|
"ffi_keyword_blacklist" => ["type" => "text", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -844,8 +844,8 @@ class DBStructure
|
||||||
"alias_uid" => ["alias(32)", "uid"],
|
"alias_uid" => ["alias(32)", "uid"],
|
||||||
"pending_uid" => ["pending", "uid"],
|
"pending_uid" => ["pending", "uid"],
|
||||||
"blocked_uid" => ["blocked", "uid"],
|
"blocked_uid" => ["blocked", "uid"],
|
||||||
"uid_rel_network_poll" => ["uid", "rel", "network(4)", "poll(64)", "archive"],
|
"uid_rel_network_poll" => ["uid", "rel", "network", "poll(64)", "archive"],
|
||||||
"uid_network_batch" => ["uid", "network(4)", "batch(64)"],
|
"uid_network_batch" => ["uid", "network", "batch(64)"],
|
||||||
"addr_uid" => ["addr(32)", "uid"],
|
"addr_uid" => ["addr(32)", "uid"],
|
||||||
"nurl_uid" => ["nurl(32)", "uid"],
|
"nurl_uid" => ["nurl(32)", "uid"],
|
||||||
"nick_uid" => ["nick(32)", "uid"],
|
"nick_uid" => ["nick(32)", "uid"],
|
||||||
|
@ -856,10 +856,10 @@ class DBStructure
|
||||||
$database["conv"] = [
|
$database["conv"] = [
|
||||||
"comment" => "private messages",
|
"comment" => "private messages",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"recips" => ["type" => "text", "comment" => ""],
|
"recips" => ["type" => "text", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -877,7 +877,7 @@ class DBStructure
|
||||||
"reply-to-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"reply-to-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"conversation-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"conversation-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"conversation-href" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"conversation-href" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"protocol" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"protocol" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"source" => ["type" => "mediumtext", "comment" => ""],
|
"source" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"received" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"received" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
],
|
],
|
||||||
|
@ -890,10 +890,10 @@ class DBStructure
|
||||||
$database["event"] = [
|
$database["event"] = [
|
||||||
"comment" => "Events",
|
"comment" => "Events",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"cid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -902,7 +902,7 @@ class DBStructure
|
||||||
"summary" => ["type" => "text", "comment" => ""],
|
"summary" => ["type" => "text", "comment" => ""],
|
||||||
"desc" => ["type" => "text", "comment" => ""],
|
"desc" => ["type" => "text", "comment" => ""],
|
||||||
"location" => ["type" => "text", "comment" => ""],
|
"location" => ["type" => "text", "comment" => ""],
|
||||||
"type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"type" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nofinish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"nofinish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"adjust" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
"adjust" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
||||||
"ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -919,7 +919,7 @@ class DBStructure
|
||||||
$database["fcontact"] = [
|
$database["fcontact"] = [
|
||||||
"comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
|
"comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -931,8 +931,8 @@ class DBStructure
|
||||||
"notify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"notify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"poll" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"poll" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"confirm" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"confirm" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"priority" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"network" => ["type" => "varchar(32)", "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" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"pubkey" => ["type" => "text", "comment" => ""],
|
"pubkey" => ["type" => "text", "comment" => ""],
|
||||||
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -946,9 +946,9 @@ class DBStructure
|
||||||
$database["fsuggest"] = [
|
$database["fsuggest"] = [
|
||||||
"comment" => "friend suggestion stuff",
|
"comment" => "friend suggestion stuff",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"cid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["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" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -963,9 +963,9 @@ class DBStructure
|
||||||
$database["gcign"] = [
|
$database["gcign"] = [
|
||||||
"comment" => "contacts ignored by friend suggestions",
|
"comment" => "contacts ignored by friend suggestions",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"gcid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
"gcid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -976,7 +976,7 @@ class DBStructure
|
||||||
$database["gcontact"] = [
|
$database["gcontact"] = [
|
||||||
"comment" => "global contacts",
|
"comment" => "global contacts",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "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(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -996,11 +996,11 @@ class DBStructure
|
||||||
"contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "-1", "comment" => ""],
|
"contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "-1", "comment" => ""],
|
||||||
"hide" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"hide" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"nsfw" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"nsfw" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"network" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"notify" => ["type" => "text", "comment" => ""],
|
"notify" => ["type" => "varchar(255)", "comment" => ""],
|
||||||
"alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"generation" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"generation" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"server_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"server_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -1009,18 +1009,18 @@ class DBStructure
|
||||||
"name" => ["name(64)"],
|
"name" => ["name(64)"],
|
||||||
"nick" => ["nick(32)"],
|
"nick" => ["nick(32)"],
|
||||||
"addr" => ["addr(64)"],
|
"addr" => ["addr(64)"],
|
||||||
"hide_network_updated" => ["hide", "network(4)", "updated"],
|
"hide_network_updated" => ["hide", "network", "updated"],
|
||||||
"updated" => ["updated"],
|
"updated" => ["updated"],
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
$database["glink"] = [
|
$database["glink"] = [
|
||||||
"comment" => "'friends of friends' linkages derived from poco",
|
"comment" => "'friends of friends' linkages derived from poco",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"cid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"gcid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
"gcid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
||||||
"zcid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
"zcid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
||||||
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -1032,8 +1032,8 @@ class DBStructure
|
||||||
$database["group"] = [
|
$database["group"] = [
|
||||||
"comment" => "privacy groups, group info",
|
"comment" => "privacy groups, group info",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -1046,9 +1046,9 @@ class DBStructure
|
||||||
$database["group_member"] = [
|
$database["group_member"] = [
|
||||||
"comment" => "privacy groups, member info",
|
"comment" => "privacy groups, member info",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"gid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["group" => "id"], "comment" => ""],
|
"gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["group" => "id"], "comment" => ""],
|
||||||
"contact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1059,17 +1059,17 @@ class DBStructure
|
||||||
$database["gserver"] = [
|
$database["gserver"] = [
|
||||||
"comment" => "Global servers",
|
"comment" => "Global servers",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"nurl" => ["type" => "varchar(255)", "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" => ""],
|
||||||
"register_policy" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"register_policy" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"registered-users" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"registered-users" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"poco" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"poco" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"noscrape" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"noscrape" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"network" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"platform" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"platform" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"last_poco_query" => ["type" => "datetime", "default" => NULL_DATE, "comment" => ""],
|
"last_poco_query" => ["type" => "datetime", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -1084,24 +1084,24 @@ class DBStructure
|
||||||
$database["hook"] = [
|
$database["hook"] = [
|
||||||
"comment" => "addon hook registry",
|
"comment" => "addon hook registry",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"hook" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"hook" => ["type" => "varbinary(100)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"file" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"file" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"function" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"function" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"priority" => ["type" => "smallint", "not null" => "1", "default" => "0", "comment" => ""],
|
"priority" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
"hook_file_function" => ["UNIQUE", "hook(50)","file(80)","function(60)"],
|
"hook_file_function" => ["UNIQUE", "hook", "file", "function"],
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
$database["intro"] = [
|
$database["intro"] = [
|
||||||
"comment" => "",
|
"comment" => "",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"fid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["fcontact" => "id"], "comment" => ""],
|
"fid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["fcontact" => "id"], "comment" => ""],
|
||||||
"contact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"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" => ""],
|
"duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"note" => ["type" => "text", "comment" => ""],
|
"note" => ["type" => "text", "comment" => ""],
|
||||||
|
@ -1117,16 +1117,16 @@ class DBStructure
|
||||||
$database["item"] = [
|
$database["item"] = [
|
||||||
"comment" => "All posts",
|
"comment" => "All posts",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "relation" => ["thread" => "iid"]],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "relation" => ["thread" => "iid"]],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"contact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"gcontact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
"gcontact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
||||||
"type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"type" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"gravity" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"parent" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
"parent" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"parent-uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"parent-uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"extid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"extid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"thr-parent" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"thr-parent" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -1135,26 +1135,26 @@ class DBStructure
|
||||||
"commented" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"commented" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"received" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"received" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"changed" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"changed" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"owner-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"owner-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"owner-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"owner-link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"owner-link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"owner-avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"owner-avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"author-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"author-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"author-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"author-link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"author-link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"author-avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"author-avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"body" => ["type" => "mediumtext", "comment" => ""],
|
"body" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"verb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"verb" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"object-type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"object" => ["type" => "text", "comment" => ""],
|
"object" => ["type" => "text", "comment" => ""],
|
||||||
"target-type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"target" => ["type" => "text", "comment" => ""],
|
"target" => ["type" => "text", "comment" => ""],
|
||||||
"postopts" => ["type" => "text", "comment" => ""],
|
"postopts" => ["type" => "text", "comment" => ""],
|
||||||
"plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"resource-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"resource-id" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"event-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["event" => "id"], "comment" => ""],
|
"event-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["event" => "id"], "comment" => ""],
|
||||||
"tag" => ["type" => "mediumtext", "comment" => ""],
|
"tag" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"attach" => ["type" => "mediumtext", "comment" => ""],
|
"attach" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"inform" => ["type" => "mediumtext", "comment" => ""],
|
"inform" => ["type" => "mediumtext", "comment" => ""],
|
||||||
|
@ -1175,9 +1175,9 @@ class DBStructure
|
||||||
"unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
"unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
||||||
"deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"forum_mode" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"forum_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"network" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
"rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"rendered-html" => ["type" => "mediumtext", "comment" => ""],
|
"rendered-html" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -1193,18 +1193,18 @@ class DBStructure
|
||||||
"uid_contactid_id" => ["uid","contact-id","id"],
|
"uid_contactid_id" => ["uid","contact-id","id"],
|
||||||
"uid_created" => ["uid","created"],
|
"uid_created" => ["uid","created"],
|
||||||
"uid_unseen_contactid" => ["uid","unseen","contact-id"],
|
"uid_unseen_contactid" => ["uid","unseen","contact-id"],
|
||||||
"uid_network_received" => ["uid","network(4)","received"],
|
"uid_network_received" => ["uid","network","received"],
|
||||||
"uid_network_commented" => ["uid","network(4)","commented"],
|
"uid_network_commented" => ["uid","network","commented"],
|
||||||
"uid_thrparent" => ["uid","thr-parent(190)"],
|
"uid_thrparent" => ["uid","thr-parent(190)"],
|
||||||
"uid_parenturi" => ["uid","parent-uri(190)"],
|
"uid_parenturi" => ["uid","parent-uri(190)"],
|
||||||
"uid_contactid_created" => ["uid","contact-id","created"],
|
"uid_contactid_created" => ["uid","contact-id","created"],
|
||||||
"authorid_created" => ["author-id","created"],
|
"authorid_created" => ["author-id","created"],
|
||||||
"ownerid" => ["owner-id"],
|
"ownerid" => ["owner-id"],
|
||||||
"uid_uri" => ["uid", "uri(190)"],
|
"uid_uri" => ["uid", "uri(190)"],
|
||||||
"resource-id" => ["resource-id(191)"],
|
"resource-id" => ["resource-id"],
|
||||||
"contactid_allowcid_allowpid_denycid_denygid" => ["contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"], //
|
"contactid_allowcid_allowpid_denycid_denygid" => ["contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"], //
|
||||||
"uid_type_changed" => ["uid","type(190)","changed"],
|
"uid_type_changed" => ["uid","type","changed"],
|
||||||
"contactid_verb" => ["contact-id","verb(190)"],
|
"contactid_verb" => ["contact-id","verb"],
|
||||||
"deleted_changed" => ["deleted","changed"],
|
"deleted_changed" => ["deleted","changed"],
|
||||||
"uid_wall_changed" => ["uid","wall","changed"],
|
"uid_wall_changed" => ["uid","wall","changed"],
|
||||||
"uid_eventid" => ["uid","event-id"],
|
"uid_eventid" => ["uid","event-id"],
|
||||||
|
@ -1215,10 +1215,10 @@ class DBStructure
|
||||||
$database["locks"] = [
|
$database["locks"] = [
|
||||||
"comment" => "",
|
"comment" => "",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "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(128)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"locked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"locked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"pid" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1227,14 +1227,14 @@ class DBStructure
|
||||||
$database["mail"] = [
|
$database["mail"] = [
|
||||||
"comment" => "private messages",
|
"comment" => "private messages",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"from-photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"from-photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"from-url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"from-url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"contact-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"convid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["conv" => "id"], "comment" => ""],
|
"convid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["conv" => "id"], "comment" => ""],
|
||||||
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"body" => ["type" => "mediumtext", "comment" => ""],
|
"body" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -1257,8 +1257,8 @@ class DBStructure
|
||||||
$database["mailacct"] = [
|
$database["mailacct"] = [
|
||||||
"comment" => "Mail account data for fetching mails",
|
"comment" => "Mail account data for fetching mails",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"server" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"server" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"port" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
"port" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"ssltype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
|
"ssltype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -1266,7 +1266,7 @@ class DBStructure
|
||||||
"user" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"user" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"pass" => ["type" => "text", "comment" => ""],
|
"pass" => ["type" => "text", "comment" => ""],
|
||||||
"reply_to" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"reply_to" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"action" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"action" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"movetofolder" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"movetofolder" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"last_check" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"last_check" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -1278,9 +1278,9 @@ class DBStructure
|
||||||
$database["manage"] = [
|
$database["manage"] = [
|
||||||
"comment" => "table of accounts that can manage each other",
|
"comment" => "table of accounts that can manage each other",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"mid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"mid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1290,21 +1290,21 @@ class DBStructure
|
||||||
$database["notify"] = [
|
$database["notify"] = [
|
||||||
"comment" => "notifications",
|
"comment" => "notifications",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
"hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"type" => ["type" => "smallint", "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" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"date" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"date" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"msg" => ["type" => "mediumtext", "comment" => ""],
|
"msg" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"iid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
"iid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"parent" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
"parent" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"verb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"verb" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"otype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
|
"otype" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"name_cache" => ["type" => "tinytext", "comment" => ""],
|
"name_cache" => ["type" => "tinytext", "comment" => ""],
|
||||||
"msg_cache" => ["type" => "mediumtext", "comment" => ""]
|
"msg_cache" => ["type" => "mediumtext", "comment" => ""]
|
||||||
],
|
],
|
||||||
|
@ -1319,11 +1319,11 @@ class DBStructure
|
||||||
$database["notify-threads"] = [
|
$database["notify-threads"] = [
|
||||||
"comment" => "",
|
"comment" => "",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"notify-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["notify" => "id"], "comment" => ""],
|
"notify-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["notify" => "id"], "comment" => ""],
|
||||||
"master-parent-item" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
"master-parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"parent-item" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"receiver-uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"receiver-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1333,7 +1333,7 @@ class DBStructure
|
||||||
"comment" => "cache for OEmbed queries",
|
"comment" => "cache for OEmbed queries",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => ""],
|
"url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => ""],
|
||||||
"maxwidth" => ["type" => "mediumint", "not null" => "1", "primary" => "1", "comment" => ""],
|
"maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => ""],
|
||||||
"content" => ["type" => "mediumtext", "comment" => ""],
|
"content" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
],
|
],
|
||||||
|
@ -1359,10 +1359,10 @@ class DBStructure
|
||||||
$database["participation"] = [
|
$database["participation"] = [
|
||||||
"comment" => "Storage for participation messages from Diaspora",
|
"comment" => "Storage for participation messages from Diaspora",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"iid" => ["type" => "int", "not null" => "1", "primary" => "1", "relation" => ["item" => "id"], "comment" => ""],
|
"iid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"server" => ["type" => "varchar(60)", "not null" => "1", "primary" => "1", "comment" => ""],
|
"server" => ["type" => "varchar(60)", "not null" => "1", "primary" => "1", "comment" => ""],
|
||||||
"cid" => ["type" => "int", "not null" => "1", "relation" => ["contact" => "id"], "comment" => ""],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"fid" => ["type" => "int", "not null" => "1", "relation" => ["fcontact" => "id"], "comment" => ""],
|
"fid" => ["type" => "int unsigned", "not null" => "1", "relation" => ["fcontact" => "id"], "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["iid", "server"]
|
"PRIMARY" => ["iid", "server"]
|
||||||
|
@ -1371,10 +1371,10 @@ class DBStructure
|
||||||
$database["pconfig"] = [
|
$database["pconfig"] = [
|
||||||
"comment" => "personal (per user) configuration storage",
|
"comment" => "personal (per user) configuration storage",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"cat" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"cat" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"k" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"k" => ["type" => "varbinary(100)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"v" => ["type" => "mediumtext", "comment" => ""],
|
"v" => ["type" => "mediumtext", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -1385,23 +1385,23 @@ class DBStructure
|
||||||
$database["photo"] = [
|
$database["photo"] = [
|
||||||
"comment" => "photo storage",
|
"comment" => "photo storage",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"contact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "char(16)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"resource-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"resource-id" => ["type" => "char(32)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"desc" => ["type" => "text", "comment" => ""],
|
"desc" => ["type" => "text", "comment" => ""],
|
||||||
"album" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"album" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"type" => ["type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"],
|
"type" => ["type" => "varchar(30)", "not null" => "1", "default" => "image/jpeg"],
|
||||||
"height" => ["type" => "smallint", "not null" => "1", "default" => "0", "comment" => ""],
|
"height" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"width" => ["type" => "smallint", "not null" => "1", "default" => "0", "comment" => ""],
|
"width" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"datasize" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"datasize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
|
"data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
|
||||||
"scale" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"scale" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"allow_cid" => ["type" => "mediumtext", "comment" => ""],
|
"allow_cid" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"allow_gid" => ["type" => "mediumtext", "comment" => ""],
|
"allow_gid" => ["type" => "mediumtext", "comment" => ""],
|
||||||
|
@ -1414,15 +1414,15 @@ class DBStructure
|
||||||
"uid_contactid" => ["uid", "contact-id"],
|
"uid_contactid" => ["uid", "contact-id"],
|
||||||
"uid_profile" => ["uid", "profile"],
|
"uid_profile" => ["uid", "profile"],
|
||||||
"uid_album_scale_created" => ["uid", "album(32)", "scale", "created"],
|
"uid_album_scale_created" => ["uid", "album(32)", "scale", "created"],
|
||||||
"uid_album_resource-id_created" => ["uid", "album(32)", "resource-id(64)", "created"],
|
"uid_album_resource-id_created" => ["uid", "album(32)", "resource-id", "created"],
|
||||||
"resource-id" => ["resource-id(64)"],
|
"resource-id" => ["resource-id"],
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
$database["poll"] = [
|
$database["poll"] = [
|
||||||
"comment" => "Currently unused table for storing poll results",
|
"comment" => "Currently unused table for storing poll results",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"q0" => ["type" => "text", "comment" => ""],
|
"q0" => ["type" => "text", "comment" => ""],
|
||||||
"q1" => ["type" => "text", "comment" => ""],
|
"q1" => ["type" => "text", "comment" => ""],
|
||||||
"q2" => ["type" => "text", "comment" => ""],
|
"q2" => ["type" => "text", "comment" => ""],
|
||||||
|
@ -1442,9 +1442,9 @@ class DBStructure
|
||||||
$database["poll_result"] = [
|
$database["poll_result"] = [
|
||||||
"comment" => "data for polls - currently unused",
|
"comment" => "data for polls - currently unused",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"poll_id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["poll" => "id"]],
|
"poll_id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["poll" => "id"]],
|
||||||
"choice" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"choice" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1454,7 +1454,7 @@ class DBStructure
|
||||||
$database["process"] = [
|
$database["process"] = [
|
||||||
"comment" => "Currently running system processes",
|
"comment" => "Currently running system processes",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"pid" => ["type" => "int", "not null" => "1", "primary" => "1", "comment" => ""],
|
"pid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => ""],
|
||||||
"command" => ["type" => "varbinary(32)", "not null" => "1", "default" => "", "comment" => ""],
|
"command" => ["type" => "varbinary(32)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
],
|
],
|
||||||
|
@ -1466,8 +1466,8 @@ class DBStructure
|
||||||
$database["profile"] = [
|
$database["profile"] = [
|
||||||
"comment" => "user profiles data",
|
"comment" => "user profiles data",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"profile-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"profile-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"is-default" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"is-default" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"hide-friends" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"hide-friends" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
|
@ -1517,12 +1517,12 @@ class DBStructure
|
||||||
$database["profile_check"] = [
|
$database["profile_check"] = [
|
||||||
"comment" => "DFRN remote auth use",
|
"comment" => "DFRN remote auth use",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"cid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"dfrn_id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"dfrn_id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"sec" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"sec" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"expire" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1531,12 +1531,12 @@ class DBStructure
|
||||||
$database["push_subscriber"] = [
|
$database["push_subscriber"] = [
|
||||||
"comment" => "Used for OStatus: Contains feed subscribers",
|
"comment" => "Used for OStatus: Contains feed subscribers",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"callback_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"callback_url" => ["type" => "varchar(255)", "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" => ""],
|
"push" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"last_update" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"last_update" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"secret" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"secret" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
],
|
],
|
||||||
|
@ -1547,9 +1547,9 @@ class DBStructure
|
||||||
$database["queue"] = [
|
$database["queue"] = [
|
||||||
"comment" => "Queue for messages that couldn't be delivered",
|
"comment" => "Queue for messages that couldn't be delivered",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"cid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "Message receiver"],
|
"cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "Message receiver"],
|
||||||
"network" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Receiver's network"],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Receiver's network"],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Unique GUID of the message"],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Unique GUID of the message"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Date, when the message was created"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Date, when the message was created"],
|
||||||
"last" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Date of last trial"],
|
"last" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Date of last trial"],
|
||||||
|
@ -1567,10 +1567,10 @@ class DBStructure
|
||||||
$database["register"] = [
|
$database["register"] = [
|
||||||
"comment" => "registrations requiring admin approval",
|
"comment" => "registrations requiring admin approval",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"language" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
|
"language" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"note" => ["type" => "text", "comment" => ""],
|
"note" => ["type" => "text", "comment" => ""],
|
||||||
|
@ -1582,8 +1582,8 @@ class DBStructure
|
||||||
$database["search"] = [
|
$database["search"] = [
|
||||||
"comment" => "",
|
"comment" => "",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -1594,10 +1594,10 @@ class DBStructure
|
||||||
$database["session"] = [
|
$database["session"] = [
|
||||||
"comment" => "web session storage",
|
"comment" => "web session storage",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "bigint", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "bigint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"sid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"sid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"data" => ["type" => "text", "comment" => ""],
|
"data" => ["type" => "text", "comment" => ""],
|
||||||
"expire" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1608,8 +1608,8 @@ class DBStructure
|
||||||
$database["sign"] = [
|
$database["sign"] = [
|
||||||
"comment" => "Diaspora signatures",
|
"comment" => "Diaspora signatures",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"iid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
"iid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"signed_text" => ["type" => "mediumtext", "comment" => ""],
|
"signed_text" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"signature" => ["type" => "text", "comment" => ""],
|
"signature" => ["type" => "text", "comment" => ""],
|
||||||
"signer" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"signer" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -1622,18 +1622,18 @@ class DBStructure
|
||||||
$database["term"] = [
|
$database["term"] = [
|
||||||
"comment" => "item taxonomy (categories, tags, etc.) table",
|
"comment" => "item taxonomy (categories, tags, etc.) table",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"tid" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"tid" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"oid" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
"oid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"otype" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"otype" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"received" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"received" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"aid" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"aid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["tid"],
|
"PRIMARY" => ["tid"],
|
||||||
|
@ -1646,12 +1646,12 @@ class DBStructure
|
||||||
$database["thread"] = [
|
$database["thread"] = [
|
||||||
"comment" => "Thread related data",
|
"comment" => "Thread related data",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"iid" => ["type" => "int", "not null" => "1", "default" => "0", "primary" => "1", "relation" => ["item" => "id"], "comment" => ""],
|
"iid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "relation" => ["item" => "id"], "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"contact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"gcontact-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
"gcontact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["gcontact" => "id"], "comment" => ""],
|
||||||
"owner-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"author-id" => ["type" => "int", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"edited" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"commented" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"commented" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
|
@ -1669,9 +1669,9 @@ class DBStructure
|
||||||
"unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
"unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
|
||||||
"deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"forum_mode" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"forum_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"network" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
|
"network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["iid"],
|
"PRIMARY" => ["iid"],
|
||||||
|
@ -1696,7 +1696,7 @@ class DBStructure
|
||||||
"client_id" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "relation" => ["clients" => "client_id"]],
|
"client_id" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "relation" => ["clients" => "client_id"]],
|
||||||
"expires" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"expires" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"scope" => ["type" => "varchar(200)", "not null" => "1", "default" => "", "comment" => ""],
|
"scope" => ["type" => "varchar(200)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
@ -1705,8 +1705,8 @@ class DBStructure
|
||||||
$database["user"] = [
|
$database["user"] = [
|
||||||
"comment" => "The local users",
|
"comment" => "The local users",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"uid" => ["type" => "mediumint", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"parent-uid" => ["type" => "mediumint", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "The parent user that has full control about this user"],
|
"parent-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "The parent user that has full control about this user"],
|
||||||
"guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
"guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"username" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"username" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
|
@ -1731,20 +1731,20 @@ class DBStructure
|
||||||
"hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"blocktags" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"blocktags" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"unkmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"unkmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"cntunkmail" => ["type" => "int", "not null" => "1", "default" => "10", "comment" => ""],
|
"cntunkmail" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
|
||||||
"notify-flags" => ["type" => "smallint unsigned", "not null" => "1", "default" => "65535", "comment" => ""],
|
"notify-flags" => ["type" => "smallint unsigned", "not null" => "1", "default" => "65535", "comment" => ""],
|
||||||
"page-flags" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"page-flags" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"account-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
"account-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"prvnets" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"prvnets" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
|
"pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
|
||||||
"pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
|
"pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
|
||||||
"maxreq" => ["type" => "int", "not null" => "1", "default" => "10", "comment" => ""],
|
"maxreq" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
|
||||||
"expire" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"account_expired" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"account_expired" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"account_expires_on" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"account_expires_on" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"expire_notification_sent" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
"expire_notification_sent" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||||
"def_gid" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
"def_gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"allow_cid" => ["type" => "mediumtext", "comment" => ""],
|
"allow_cid" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"allow_gid" => ["type" => "mediumtext", "comment" => ""],
|
"allow_gid" => ["type" => "mediumtext", "comment" => ""],
|
||||||
"deny_cid" => ["type" => "mediumtext", "comment" => ""],
|
"deny_cid" => ["type" => "mediumtext", "comment" => ""],
|
||||||
|
@ -1759,7 +1759,7 @@ class DBStructure
|
||||||
$database["userd"] = [
|
$database["userd"] = [
|
||||||
"comment" => "Deleted usernames",
|
"comment" => "Deleted usernames",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"username" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
|
"username" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
|
@ -1770,11 +1770,11 @@ class DBStructure
|
||||||
$database["workerqueue"] = [
|
$database["workerqueue"] = [
|
||||||
"comment" => "Background tasks queue entries",
|
"comment" => "Background tasks queue entries",
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
|
||||||
"parameter" => ["type" => "mediumblob", "comment" => "Task command"],
|
"parameter" => ["type" => "mediumblob", "comment" => "Task command"],
|
||||||
"priority" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Task priority"],
|
"priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Task priority"],
|
||||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Creation date"],
|
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Creation date"],
|
||||||
"pid" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
|
"pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
|
||||||
"executed" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Execution date"],
|
"executed" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Execution date"],
|
||||||
"done" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marked when the task was done, will be deleted later"],
|
"done" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marked when the task was done, will be deleted later"],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user