Merge pull request #9500 from MrPetovan/bug/9326-owner-view-blocked

[dbstructure 1373] Replace contact.blocked with user.blocked in owner-view
This commit is contained in:
Michael Vogel 2020-11-08 08:45:12 +01:00 committed by GitHub
commit 55f26218af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1574,7 +1574,7 @@ CREATE VIEW `owner-view` AS SELECT
`contact`.`term-date` AS `term-date`,
`contact`.`last-item` AS `last-item`,
`contact`.`priority` AS `priority`,
`contact`.`blocked` AS `blocked`,
`user`.`blocked` AS `blocked`,
`contact`.`block_reason` AS `block_reason`,
`contact`.`readonly` AS `readonly`,
`contact`.`writable` AS `writable`,

View File

@ -54,7 +54,7 @@
use Friendica\Database\DBA;
if (!defined('DB_UPDATE_VERSION')) {
define('DB_UPDATE_VERSION', 1372);
define('DB_UPDATE_VERSION', 1373);
}
return [

View File

@ -181,7 +181,7 @@ return [
"term-date" => ["contact", "term-date"],
"last-item" => ["contact", "last-item"],
"priority" => ["contact", "priority"],
"blocked" => ["contact", "blocked"], /// @todo Check if "blocked" from contact or from the users table
"blocked" => ["user", "blocked"],
"block_reason" => ["contact", "block_reason"],
"readonly" => ["contact", "readonly"],
"writable" => ["contact", "writable"],