Add "uri-id" to the "thread" table
This commit is contained in:
parent
d3ff749749
commit
3258216e8d
|
@ -3110,7 +3110,7 @@ class Item
|
||||||
private static function addThread($itemid, $onlyshadow = false)
|
private static function addThread($itemid, $onlyshadow = false)
|
||||||
{
|
{
|
||||||
$fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
|
$fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
|
||||||
'moderated', 'visible', 'starred', 'contact-id', 'post-type',
|
'moderated', 'visible', 'starred', 'contact-id', 'post-type', 'uri-id',
|
||||||
'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
|
'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
|
||||||
$condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
|
$condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
|
||||||
$item = self::selectFirst($fields, $condition);
|
$item = self::selectFirst($fields, $condition);
|
||||||
|
@ -3131,7 +3131,7 @@ class Item
|
||||||
private static function updateThread($itemid, $setmention = false)
|
private static function updateThread($itemid, $setmention = false)
|
||||||
{
|
{
|
||||||
$fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed', 'post-type',
|
$fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed', 'post-type',
|
||||||
'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'contact-id',
|
'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'contact-id', 'uri-id',
|
||||||
'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
|
'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
|
||||||
$condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
|
$condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
|
||||||
|
|
||||||
|
|
|
@ -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', 1350);
|
define('DB_UPDATE_VERSION', 1351);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
@ -1343,6 +1343,7 @@ return [
|
||||||
"fields" => [
|
"fields" => [
|
||||||
"iid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "relation" => ["item" => "id"],
|
"iid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "relation" => ["item" => "id"],
|
||||||
"comment" => "sequential ID"],
|
"comment" => "sequential ID"],
|
||||||
|
"uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
|
||||||
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
"uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],
|
||||||
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
"contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => ""],
|
||||||
"owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "Item owner"],
|
"owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "Item owner"],
|
||||||
|
@ -1381,6 +1382,7 @@ return [
|
||||||
"uid_commented" => ["uid", "commented"],
|
"uid_commented" => ["uid", "commented"],
|
||||||
"uid_wall_received" => ["uid", "wall", "received"],
|
"uid_wall_received" => ["uid", "wall", "received"],
|
||||||
"private_wall_origin_commented" => ["private", "wall", "origin", "commented"],
|
"private_wall_origin_commented" => ["private", "wall", "origin", "commented"],
|
||||||
|
"uri-id" => ["uri-id"],
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"tokens" => [
|
"tokens" => [
|
||||||
|
|
11
update.php
11
update.php
|
@ -498,4 +498,13 @@ function update_1349()
|
||||||
}
|
}
|
||||||
|
|
||||||
return Update::SUCCESS;
|
return Update::SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function update_1351()
|
||||||
|
{
|
||||||
|
if (!DBA::e("UPDATE `thread` INNER JOIN `item` ON `thread`.`iid` = `item`.`id` SET `thread`.`uri-id` = `item`.`uri-id`")) {
|
||||||
|
return Update::FAILED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Update::SUCCESS;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue