X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=database.sql;h=f2c558241a0caea41409a84df988cd5173792566;hb=ad48ab29286cdc609e75b8d4412cd05d17204e82;hp=99d60429aeabf6737a0d8e99835ba9756d50089f;hpb=158bfda0ac5108065ece93cde0c67ef38459328d;p=friendica.git diff --git a/database.sql b/database.sql index 99d60429ae..f2c558241a 100644 --- a/database.sql +++ b/database.sql @@ -241,6 +241,20 @@ CREATE TABLE IF NOT EXISTS `deliverq` ( -- -------------------------------------------------------- +-- +-- Table structure for table `dsprphotoq` +-- + +CREATE TABLE `dsprphotoq` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL, + `msg` mediumtext NOT NULL, + `attempt` tinyint(4) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + -- -- Table structure for table `event` -- @@ -577,6 +591,8 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `uid_created` (`uid`, `created`), KEY `uid_unseen` (`uid`, `unseen`), KEY `mention` (`mention`), + KEY `resource-id` (`resource-id`), + KEY `event_id` (`event-id`), FULLTEXT KEY `title` (`title`), FULLTEXT KEY `body` (`body`), FULLTEXT KEY `allow_cid` (`allow_cid`),