|
|
@@ -97,7 +97,7 @@ class CleanDb extends BaseCronJob implements CronjobInterface
|
|
|
*/
|
|
|
protected function purgeAuditTables(\DateTime $maxDate): int
|
|
|
{
|
|
|
- $this->ui->print('Purge Audit tables');
|
|
|
+ $this->ui->print('Purge Audit_* tables');
|
|
|
|
|
|
$tableNames = $this->connection->getSchemaManager()->listTableNames();
|
|
|
|
|
|
@@ -130,7 +130,7 @@ class CleanDb extends BaseCronJob implements CronjobInterface
|
|
|
*/
|
|
|
protected function purgeMessages(\DateTime $maxDate): int
|
|
|
{
|
|
|
- $this->ui->print('Purge DB from records of message create before '.$maxDate->format('c'));
|
|
|
+ $this->ui->print('Purge the DB from the messages created before the '.$maxDate->format('c'));
|
|
|
|
|
|
$q = $this->connection->createQueryBuilder();
|
|
|
|
|
|
@@ -150,7 +150,7 @@ class CleanDb extends BaseCronJob implements CronjobInterface
|
|
|
*/
|
|
|
protected function purgeNotifications(\DateTime $maxDate): int
|
|
|
{
|
|
|
- $this->ui->print('Purge DB from records of notifications create before '.$maxDate->format('c'));
|
|
|
+ $this->ui->print('Purge the DB from the notifications created before the '.$maxDate->format('c'));
|
|
|
|
|
|
$q = $this->connection->createQueryBuilder();
|
|
|
|