1
0
Fork 0

Add "uri-id" to the "thread" table

This commit is contained in:
Michael 2020-05-28 21:44:55 +00:00
commit 3258216e8d
3 changed files with 15 additions and 4 deletions

View file

@ -498,4 +498,13 @@ function update_1349()
}
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;
}