mirror of
https://github.com/friendica/friendica
synced 2024-11-17 20:23:40 +00:00
Update the "vid"
This commit is contained in:
parent
ef3dc72dca
commit
929455bd01
2 changed files with 26 additions and 1 deletions
|
@ -54,7 +54,7 @@
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1348);
|
define('DB_UPDATE_VERSION', 1349);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
25
update.php
25
update.php
|
@ -474,3 +474,28 @@ function update_1348()
|
||||||
|
|
||||||
return Update::SUCCESS;
|
return Update::SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function update_1349()
|
||||||
|
{
|
||||||
|
$correct = true;
|
||||||
|
foreach (Item::ACTIVITIES as $index => $activity) {
|
||||||
|
if (!DBA::exists('verb', ['id' => $index + 1, 'name' => $activity])) {
|
||||||
|
$correct = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$correct) {
|
||||||
|
// The update failed - but it cannot be recovered, since the data doesn't match our expectation
|
||||||
|
// This means that we can't use this "shortcut" to fill the "vid" field and we have to rely upon
|
||||||
|
// the postupdate. This is not fatal, but means that it will take some longer time for the system
|
||||||
|
// to fill all data.
|
||||||
|
return Update::SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!DBA::e("UPDATE `item` INNER JOIN `item-activity` ON `item`.`uri-id` = `item-activity`.`uri-id`
|
||||||
|
SET `vid` = `item-activity`.`activity` + 1 WHERE `gravity` = ? AND (`vid` IS NULL OR `vid` = 0)", GRAVITY_ACTIVITY)) {
|
||||||
|
return Update::FAILED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Update::SUCCESS;
|
||||||
|
}
|
Loading…
Reference in a new issue