mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 10:04:26 +02:00
Use the cached activity function
This commit is contained in:
parent
da658cbf1d
commit
a0b99f61ea
10 changed files with 6 additions and 173 deletions
14
database.sql
14
database.sql
|
@ -1007,20 +1007,6 @@ CREATE TABLE IF NOT EXISTS `openwebauth-token` (
|
|||
FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
|
||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Store OpenWebAuth token to verify contacts';
|
||||
|
||||
--
|
||||
-- TABLE pagecache
|
||||
--
|
||||
CREATE TABLE IF NOT EXISTS `pagecache` (
|
||||
`page` varbinary(255) NOT NULL COMMENT 'Page',
|
||||
`uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the uri the page belongs to',
|
||||
`content` mediumtext COMMENT 'Page content',
|
||||
`fetched` datetime COMMENT 'date when the page had been fetched',
|
||||
PRIMARY KEY(`page`),
|
||||
INDEX `fetched` (`fetched`),
|
||||
INDEX `uri-id` (`uri-id`),
|
||||
FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
|
||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data';
|
||||
|
||||
--
|
||||
-- TABLE parsed_url
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue