X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=database.sql;h=4956798ba290e2d9c67029d543749b68db73e586;hb=b1eb1c9e9129a6461973cfe9336c510f78a8df54;hp=f33f8921183406c3544e256b019644a96b0115ae;hpb=1f4d371923b3c21b44b408b5de05f3e07c0cbe19;p=friendica.git diff --git a/database.sql b/database.sql index f33f892118..4956798ba2 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 2020.03-dev (Dalmatian Bellflower) --- DB_UPDATE_VERSION 1337 +-- Friendica 2020.03-rc (Dalmatian Bellflower) +-- DB_UPDATE_VERSION 1338 -- ------------------------------------------ @@ -254,6 +254,17 @@ CREATE TABLE IF NOT EXISTS `contact` ( INDEX `issued-id` (`issued-id`(64)) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='contact table'; +-- +-- TABLE contact-relation +-- +CREATE TABLE IF NOT EXISTS `contact-relation` ( + `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact the related contact had interacted with', + `relation-cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'related contact who had interacted with the contact', + `last-interaction` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last interaction', + PRIMARY KEY(`cid`,`relation-cid`), + INDEX `relation-cid` (`relation-cid`) +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Contact relations'; + -- -- TABLE conv --