mirror of
https://github.com/friendica/friendica
synced 2025-01-10 06:04:43 +00:00
Merge pull request #14552 from annando/notice
Fix notice because of missing "gsid"
This commit is contained in:
commit
38d19c1cd7
3 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 2024.09-rc (Yellow Archangel)
|
-- 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`.`unsearchable` AS `unsearchable`,
|
||||||
`contact`.`sensitive` AS `sensitive`,
|
`contact`.`sensitive` AS `sensitive`,
|
||||||
`contact`.`baseurl` AS `baseurl`,
|
`contact`.`baseurl` AS `baseurl`,
|
||||||
|
`contact`.`gsid` AS `gsid`,
|
||||||
`contact`.`reason` AS `reason`,
|
`contact`.`reason` AS `reason`,
|
||||||
`contact`.`info` AS `info`,
|
`contact`.`info` AS `info`,
|
||||||
`contact`.`bdyear` AS `bdyear`,
|
`contact`.`bdyear` AS `bdyear`,
|
||||||
|
|
|
@ -44,7 +44,7 @@ use Friendica\Database\DBA;
|
||||||
|
|
||||||
// This file is required several times during the test in DbaDefinition which justifies this condition
|
// This file is required several times during the test in DbaDefinition which justifies this condition
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1575);
|
define('DB_UPDATE_VERSION', 1576);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
|
@ -1485,6 +1485,7 @@ return [
|
||||||
"unsearchable" => ["contact", "unsearchable"],
|
"unsearchable" => ["contact", "unsearchable"],
|
||||||
"sensitive" => ["contact", "sensitive"],
|
"sensitive" => ["contact", "sensitive"],
|
||||||
"baseurl" => ["contact", "baseurl"],
|
"baseurl" => ["contact", "baseurl"],
|
||||||
|
"gsid" => ["contact", "gsid"],
|
||||||
"reason" => ["contact", "reason"],
|
"reason" => ["contact", "reason"],
|
||||||
"info" => ["contact", "info"],
|
"info" => ["contact", "info"],
|
||||||
"bdyear" => ["contact", "bdyear"],
|
"bdyear" => ["contact", "bdyear"],
|
||||||
|
|
Loading…
Reference in a new issue