From e08367dc9ba95fbeb145317471d0d2204bf089a3 Mon Sep 17 00:00:00 2001 From: shum Date: Tue, 23 Jun 2026 10:07:43 +0000 Subject: [PATCH] fix(store): single-line simplex_name WHERE to match CI sqlite (<=3.45) --- src/Simplex/Chat/Store/SQLite/Migrations/chat_schema.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Simplex/Chat/Store/SQLite/Migrations/chat_schema.sql b/src/Simplex/Chat/Store/SQLite/Migrations/chat_schema.sql index 8d95f836c9..19275adfe4 100644 --- a/src/Simplex/Chat/Store/SQLite/Migrations/chat_schema.sql +++ b/src/Simplex/Chat/Store/SQLite/Migrations/chat_schema.sql @@ -1321,8 +1321,7 @@ ON contacts( user_id, simplex_name ) -WHERE simplex_name IS NOT NULL - AND deleted = 0; +WHERE simplex_name IS NOT NULL AND deleted = 0; CREATE UNIQUE INDEX idx_groups_simplex_name ON groups( user_id,