]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
CHANGELOG updates for Feb 6th
[friendica.git] / database.sql
index 175c48b8c3f88e4c069e3627703c44dedd2cac93..692b5deb70d2d593f006c591780cade3b2838b49 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2021.12-rc (Siberian Iris)
--- DB_UPDATE_VERSION 1447
+-- DB_UPDATE_VERSION 1449
 -- ------------------------------------------
 
 
@@ -601,6 +601,9 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
        `alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `pubkey` text COMMENT '',
        `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
+       `interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interactes with',
+       `interacted_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts that interacted with this contact',
+       `post_count` int unsigned DEFAULT 0 COMMENT 'Number of posts and comments',
         PRIMARY KEY(`id`),
         INDEX `addr` (`addr`(32)),
         UNIQUE INDEX `url` (`url`(190)),
@@ -1611,7 +1614,7 @@ CREATE VIEW `post-user-view` AS SELECT
        `post-content`.`title` AS `title`,
        `post-content`.`content-warning` AS `content-warning`,
        `post-content`.`raw-body` AS `raw-body`,
-       `post-content`.`body` AS `body`,
+       IFNULL (`post-content`.`body`, '') AS `body`,
        `post-content`.`rendered-hash` AS `rendered-hash`,
        `post-content`.`rendered-html` AS `rendered-html`,
        `post-content`.`language` AS `language`,