From b29e744750a20127265d22d904dafbbc14be62d2 Mon Sep 17 00:00:00 2001 From: Nick Santamaria Date: Mon, 30 Sep 2024 12:30:27 +1000 Subject: [PATCH] Fixed admin_audit_trail condition in mtk config --- 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_*