]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
Merge pull request #10646 from annando/fix-translation
[friendica.git] / database.sql
index 1c361b6762b26531f509e1cf8e65aa7fc18898f7..eff8f83faf819ba88b0e92fae6eccdb5329a745c 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2021.09-dev (Siberian Iris)
--- DB_UPDATE_VERSION 1431
+-- DB_UPDATE_VERSION 1434
 -- ------------------------------------------
 
 
@@ -126,7 +126,8 @@ CREATE TABLE IF NOT EXISTS `contact` (
        `about` text COMMENT '',
        `keywords` text COMMENT 'public keywords (interests) of the contact',
        `gender` varchar(32) NOT NULL DEFAULT '' COMMENT 'Deprecated',
-       `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
+       `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
+       `matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
        `attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `photo` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
@@ -331,6 +332,8 @@ CREATE TABLE IF NOT EXISTS `apcontact` (
        `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `name` varchar(255) COMMENT '',
        `about` text COMMENT '',
+       `xmpp` varchar(255) COMMENT 'XMPP address',
+       `matrix` varchar(255) COMMENT 'Matrix address',
        `photo` varchar(255) COMMENT '',
        `header` varchar(255) COMMENT 'Header picture',
        `addr` varchar(255) COMMENT '',
@@ -1366,7 +1369,8 @@ CREATE TABLE IF NOT EXISTS `profile` (
        `education` text COMMENT 'Deprecated',
        `contact` text COMMENT 'Deprecated',
        `homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '',
-       `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
+       `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
+       `matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
        `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `thumb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
@@ -1468,6 +1472,30 @@ CREATE TABLE IF NOT EXISTS `storage` (
         PRIMARY KEY(`id`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Data stored by Database storage backend';
 
+--
+-- TABLE subscription
+--
+CREATE TABLE IF NOT EXISTS `subscription` (
+       `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented image data id',
+       `application-id` int unsigned NOT NULL COMMENT '',
+       `uid` mediumint unsigned NOT NULL COMMENT 'Owner User id',
+       `endpoint` varchar(511) COMMENT 'Endpoint URL',
+       `pubkey` varchar(127) COMMENT 'User agent public key',
+       `secret` varchar(32) COMMENT 'Auth secret',
+       `follow` boolean COMMENT '',
+       `favourite` boolean COMMENT '',
+       `reblog` boolean COMMENT '',
+       `mention` boolean COMMENT '',
+       `poll` boolean COMMENT '',
+       `follow_request` boolean COMMENT '',
+       `status` boolean COMMENT '',
+        PRIMARY KEY(`id`),
+        UNIQUE INDEX `application-id_uid` (`application-id`,`uid`),
+        INDEX `uid_application-id` (`uid`,`application-id`),
+       FOREIGN KEY (`application-id`) REFERENCES `application` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
+       FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
+) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Push Subscription for the API';
+
 --
 -- TABLE userd
 --
@@ -2199,6 +2227,7 @@ CREATE VIEW `owner-view` AS SELECT
        `contact`.`keywords` AS `keywords`,
        `contact`.`gender` AS `gender`,
        `contact`.`xmpp` AS `xmpp`,
+       `contact`.`matrix` AS `matrix`,
        `contact`.`attag` AS `attag`,
        `contact`.`avatar` AS `avatar`,
        `contact`.`photo` AS `photo`,
@@ -2325,6 +2354,7 @@ CREATE VIEW `account-view` AS SELECT
        `contact`.`about` AS `about`,
        `contact`.`keywords` AS `keywords`,
        `contact`.`xmpp` AS `xmpp`,
+       `contact`.`matrix` AS `matrix`,
        `contact`.`avatar` AS `avatar`,
        `contact`.`photo` AS `photo`,
        `contact`.`thumb` AS `thumb`,
@@ -2408,6 +2438,7 @@ CREATE VIEW `account-user-view` AS SELECT
        `contact`.`about` AS `about`,
        `contact`.`keywords` AS `keywords`,
        `contact`.`xmpp` AS `xmpp`,
+       `contact`.`matrix` AS `matrix`,
        `contact`.`avatar` AS `avatar`,
        `contact`.`photo` AS `photo`,
        `contact`.`thumb` AS `thumb`,