From 57f39163d136382d47f30df65a9e2b012ee3baa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Fri, 15 May 2026 11:26:48 +0400 Subject: [PATCH] Remove DEFAULT clauses from common_tracker_patterns columns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- pkg/coredata/migrations/20260513T105453Z.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/coredata/migrations/20260513T105453Z.sql b/pkg/coredata/migrations/20260513T105453Z.sql index 94874a34a..8b64b0bd2 100644 --- a/pkg/coredata/migrations/20260513T105453Z.sql +++ b/pkg/coredata/migrations/20260513T105453Z.sql @@ -38,9 +38,9 @@ CREATE TABLE common_tracker_patterns ( tracker_type tracker_type NOT NULL, pattern TEXT NOT NULL, match_type cookie_pattern_match_type NOT NULL, - description TEXT NOT NULL DEFAULT '', + description TEXT NOT NULL, max_age_seconds INTEGER, - confidence REAL NOT NULL DEFAULT 0, + confidence REAL NOT NULL, created_at TIMESTAMP WITH TIME ZONE NOT NULL, updated_at TIMESTAMP WITH TIME ZONE NOT NULL );