mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
[Database version 1449] Coalesce null values in post-content.body field of post-user-view view
This commit is contained in:
parent
ad43c6f930
commit
34ca5958a8
3 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
-- ------------------------------------------
|
||||
-- Friendica 2021.12-rc (Siberian Iris)
|
||||
-- DB_UPDATE_VERSION 1448
|
||||
-- DB_UPDATE_VERSION 1449
|
||||
-- ------------------------------------------
|
||||
|
||||
|
||||
|
@ -1614,7 +1614,7 @@ CREATE VIEW `post-user-view` AS SELECT
|
|||
`post-content`.`title` AS `title`,
|
||||
`post-content`.`content-warning` AS `content-warning`,
|
||||
`post-content`.`raw-body` AS `raw-body`,
|
||||
`post-content`.`body` AS `body`,
|
||||
IFNULL (`post-content`.`body`, '') AS `body`,
|
||||
`post-content`.`rendered-hash` AS `rendered-hash`,
|
||||
`post-content`.`rendered-html` AS `rendered-html`,
|
||||
`post-content`.`language` AS `language`,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue