We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 695e63a + 0ced090 commit acde132Copy full SHA for acde132
CHANGELOG.md
@@ -9,6 +9,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
9
### Deprecated
10
### Removed
11
### Fixed
12
+- Missing DB table name specifier in `/cleanup` command. (#947)
13
### Security
14
15
## [0.56.0] - 2019-04-15
src/Commands/AdminCommands/CleanupCommand.php
@@ -306,7 +306,7 @@ private function getQueries($settings)
306
SELECT id
307
FROM (
308
309
- FROM `message`
+ FROM `%1$s`
310
WHERE `date` < \'%2$s\'
311
AND `id` NOT IN (
312
SELECT `message_id`
0 commit comments