From 2aa56b1b468c0aff18cc5d94ed33e5431922fdc0 Mon Sep 17 00:00:00 2001 From: Sebastian Zoglowek <55794780+zoglo@users.noreply.github.com> Date: Tue, 7 May 2024 16:18:30 +0200 Subject: [PATCH] Allow saving signed integers in time (fixes #30) --- contao/dca/tl_recommendation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contao/dca/tl_recommendation.php b/contao/dca/tl_recommendation.php index f3efb50..e91cbf1 100644 --- a/contao/dca/tl_recommendation.php +++ b/contao/dca/tl_recommendation.php @@ -177,7 +177,7 @@ 'load_callback' => [ [RecommendationListener::class, 'loadTime'] ], - 'sql' => "int(10) unsigned NOT NULL default 0" + 'sql' => "int(10) NOT NULL default 0" ], 'teaser' => [ 'exclude' => true,