]> git.mxchange.org Git - friendica.git/commitdiff
Fix notice because of missing "gsid"
authorMichael <heluecht@pirati.ca>
Fri, 15 Nov 2024 04:51:35 +0000 (04:51 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 15 Nov 2024 04:51:35 +0000 (04:51 +0000)
database.sql
static/dbstructure.config.php
static/dbview.config.php

index 6d1976696016abdf365986cdc9ae255dc67ae170..8aa5c1d5b36672316093c2b11325f6c42d7c10f4 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2024.09-rc (Yellow Archangel)
--- DB_UPDATE_VERSION 1575
+-- DB_UPDATE_VERSION 1576
 -- ------------------------------------------
 
 
@@ -3526,6 +3526,7 @@ CREATE VIEW `owner-view` AS SELECT
        `contact`.`unsearchable` AS `unsearchable`,
        `contact`.`sensitive` AS `sensitive`,
        `contact`.`baseurl` AS `baseurl`,
+       `contact`.`gsid` AS `gsid`,
        `contact`.`reason` AS `reason`,
        `contact`.`info` AS `info`,
        `contact`.`bdyear` AS `bdyear`,
index 27d7f030c2531db1c2a42ea94d12aef35680c4e9..55ebbad6fd20070ac248107043cf54e093997be2 100644 (file)
@@ -44,7 +44,7 @@ use Friendica\Database\DBA;
 
 // This file is required several times during the test in DbaDefinition which justifies this condition
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1575);
+       define('DB_UPDATE_VERSION', 1576);
 }
 
 return [
index 2208f1c56501dc2c1f2b02af8f63c1de0a2275d9..b1c91d594223147ee0d61371f81e0cded6f42720 100644 (file)
@@ -1485,6 +1485,7 @@ return [
                        "unsearchable" => ["contact", "unsearchable"],
                        "sensitive" => ["contact", "sensitive"],
                        "baseurl" => ["contact", "baseurl"],
+                       "gsid" => ["contact", "gsid"],
                        "reason" => ["contact", "reason"],
                        "info" => ["contact", "info"],
                        "bdyear" => ["contact", "bdyear"],