From 91d6ecff1a8f6066c2f86a29c705149067f297c9 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Sat, 6 Jun 2026 10:46:24 +0100 Subject: [PATCH] postgresql schema --- src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql b/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql index cc3543e8a8..c5db399807 100644 --- a/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql +++ b/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql @@ -531,7 +531,12 @@ CREATE TABLE test_chat_schema.contact_profiles ( preferences text, contact_link bytea, short_descr text, - chat_peer_type text + chat_peer_type text, + badge_proof bytea, + badge_pres_header bytea, + badge_expiry text, + badge_type text, + badge_verified smallint DEFAULT 0 NOT NULL );