mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
Updated database.sql
This commit is contained in:
parent
58e35f037b
commit
6aef4aea0e
1 changed files with 10 additions and 4 deletions
14
database.sql
14
database.sql
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 2018.12-dev (The Tazmans Flax-lily)
|
-- Friendica 2018.12-dev (The Tazmans Flax-lily)
|
||||||
-- DB_UPDATE_VERSION 1287
|
-- DB_UPDATE_VERSION 1290
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,6 +42,7 @@ CREATE TABLE IF NOT EXISTS `apcontact` (
|
||||||
`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(`url`),
|
PRIMARY KEY(`url`),
|
||||||
INDEX `addr` (`addr`(32)),
|
INDEX `addr` (`addr`(32)),
|
||||||
|
INDEX `alias` (`alias`(190)),
|
||||||
INDEX `url` (`followers`(190))
|
INDEX `url` (`followers`(190))
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation';
|
||||||
|
|
||||||
|
@ -598,7 +599,8 @@ CREATE TABLE IF NOT EXISTS `item-activity` (
|
||||||
`activity` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`activity` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `uri-hash` (`uri-hash`),
|
UNIQUE INDEX `uri-hash` (`uri-hash`),
|
||||||
INDEX `uri` (`uri`(191))
|
INDEX `uri` (`uri`(191)),
|
||||||
|
INDEX `uri-id` (`uri-id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activities for items';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activities for items';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -626,7 +628,8 @@ CREATE TABLE IF NOT EXISTS `item-content` (
|
||||||
`verb` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams verb',
|
`verb` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams verb',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `uri-plink-hash` (`uri-plink-hash`),
|
UNIQUE INDEX `uri-plink-hash` (`uri-plink-hash`),
|
||||||
INDEX `uri` (`uri`(191))
|
INDEX `uri` (`uri`(191)),
|
||||||
|
INDEX `uri-id` (`uri-id`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Content for all posts';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Content for all posts';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -1258,7 +1261,10 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
|
||||||
INDEX `pid` (`pid`),
|
INDEX `pid` (`pid`),
|
||||||
INDEX `parameter` (`parameter`(64)),
|
INDEX `parameter` (`parameter`(64)),
|
||||||
INDEX `priority_created_next_try` (`priority`,`created`,`next_try`),
|
INDEX `priority_created_next_try` (`priority`,`created`,`next_try`),
|
||||||
INDEX `done_executed_next_try` (`done`,`executed`,`next_try`)
|
INDEX `done_priority_executed_next_try` (`done`,`priority`,`executed`,`next_try`),
|
||||||
|
INDEX `done_executed_next_try` (`done`,`executed`,`next_try`),
|
||||||
|
INDEX `done_priority_next_try` (`done`,`priority`,`next_try`),
|
||||||
|
INDEX `done_next_try` (`done`,`next_try`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries';
|
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries';
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue