From fd5a9aa0de458c50b216cb0612cdf30fb92dd9a7 Mon Sep 17 00:00:00 2001 From: Nick Santamaria Date: Wed, 9 Oct 2024 10:22:43 +1100 Subject: [PATCH] Fixed admin_audit_trail condition in mtk config (#315) --- images/php/mtk/drupal.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/php/mtk/drupal.conf b/images/php/mtk/drupal.conf index 18e4df9d..8e797e07 100644 --- a/images/php/mtk/drupal.conf +++ b/images/php/mtk/drupal.conf @@ -11,7 +11,7 @@ rewrite: where: # Exclude audit messages older than 7 days. admin_audit_trail: |- - created >= DATE_SUB(NOW(), INTERVAL 7 DAY) + created >= FROM_UNIXTIME(DATE_SUB(NOW(), INTERVAL 7 DAY)) # Exclude unpublished revision data that takes up too much space. # Paragraphs paragraphs_item_revision: |- @@ -61,4 +61,4 @@ nodata: - purge_queue - queue - sessions - - webform_* \ No newline at end of file + - webform_*