]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
Issue 7651: Added basic support for more complicated "video" elements
[friendica.git] / database.sql
index b09b8290e09f4cd81f77fa924df7655ca82435b7..13e7e34cffe0bfaaa40480f048cb4bae0eeca96e 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 2019.09-rc (Dalmatian Bellflower)
--- DB_UPDATE_VERSION 1322
+-- Friendica 2019.12-rc (Dalmatian Bellflower)
+-- DB_UPDATE_VERSION 1325
 -- ------------------------------------------
 
 
@@ -66,6 +66,9 @@ CREATE TABLE IF NOT EXISTS `apcontact` (
        `pubkey` text COMMENT '',
        `baseurl` varchar(255) COMMENT 'baseurl of the ap contact',
        `generator` varchar(255) COMMENT 'Name of the contact\'s system',
+       `following_count` int unsigned DEFAULT 0 COMMENT 'Number of following contacts',
+       `followers_count` int unsigned DEFAULT 0 COMMENT 'Number of followers',
+       `statuses_count` int unsigned DEFAULT 0 COMMENT 'Number of posts',
        `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
         PRIMARY KEY(`url`),
         INDEX `addr` (`addr`(32)),
@@ -1279,7 +1282,9 @@ CREATE TABLE IF NOT EXISTS `user-item` (
        `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
        `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide an item from the user',
        `ignored` boolean COMMENT 'Ignore this thread if set',
-        PRIMARY KEY(`uid`,`iid`)
+       `pinned` boolean COMMENT 'The item is pinned on the profile page',
+        PRIMARY KEY(`uid`,`iid`),
+        INDEX `uid_pinned` (`uid`,`pinned`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific item data';
 
 --