diff --git a/database.sql b/database.sql index 6d19766960..8aa5c1d5b3 100644 --- a/database.sql +++ b/database.sql @@ -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`, diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 27d7f030c2..55ebbad6fd 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -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 [ diff --git a/static/dbview.config.php b/static/dbview.config.php index 2208f1c565..b1c91d5942 100644 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -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"],