[FIX] Removed blocks JOIN on archive query
This commit is contained in:
parent
ffc39f855d
commit
b0cdbd54bc
@ -36,8 +36,6 @@ class Transaction extends Base {
|
|||||||
public function setArchived($account_id, $txid) {
|
public function setArchived($account_id, $txid) {
|
||||||
$stmt = $this->mysqli->prepare("
|
$stmt = $this->mysqli->prepare("
|
||||||
UPDATE $this->table AS t
|
UPDATE $this->table AS t
|
||||||
LEFT JOIN " . $this->block->getTableName() . " AS b
|
|
||||||
ON b.id = t.block_id
|
|
||||||
SET t.archived = 1
|
SET t.archived = 1
|
||||||
WHERE archived = 0 AND t.account_id = ? AND t.id <= ?
|
WHERE archived = 0 AND t.account_id = ? AND t.id <= ?
|
||||||
");
|
");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user