]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
show pinned items
[friendica.git] / database.sql
index c7d37a413440b90710f9a12c3cec2a5df4e7b753..86207a122100d040930de884ad5610036e1a3c91 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 2019.09-rc (Dalmatian Bellflower)
--- DB_UPDATE_VERSION 1321
+-- Friendica 2019.12-dev (Dalmatian Bellflower)
+-- DB_UPDATE_VERSION 1324
 -- ------------------------------------------
 
 
@@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `2fa_app_specific_password` (
        `generated` datetime NOT NULL COMMENT 'Datetime the password was generated',
        `last_used` datetime COMMENT 'Datetime the password was last used',
         PRIMARY KEY(`id`),
-        INDEX `uid_description` (`uid`,`description`)
+        INDEX `uid_description` (`uid`,`description`(190))
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor app-specific _password';
 
 --
@@ -1281,7 +1281,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';
 
 --