From 12a45b81785454fcf0c8521d39bf48095de262e4 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Thu, 9 Jul 2026 14:23:16 +0400 Subject: [PATCH] wip --- src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql b/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql index 3b8e7530c8..930430d43d 100644 --- a/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql +++ b/src/Simplex/Chat/Store/Postgres/Migrations/chat_schema.sql @@ -758,7 +758,8 @@ CREATE TABLE test_chat_schema.files ( redirect_file_id bigint, shared_msg_id bytea, file_type text DEFAULT 'normal'::text NOT NULL, - roster_transfer_id bigint + roster_transfer_id bigint, + file_digest bytea ); @@ -985,7 +986,7 @@ CREATE TABLE test_chat_schema.groups ( public_member_count bigint, relay_request_retries bigint DEFAULT 0 NOT NULL, relay_request_delay bigint DEFAULT 0 NOT NULL, - relay_request_execute_at timestamp with time zone DEFAULT '1970-01-01 01:00:00+01'::timestamp with time zone NOT NULL, + relay_request_execute_at timestamp with time zone DEFAULT '1970-01-01 04:00:00+04'::timestamp with time zone NOT NULL, relay_inactive_at timestamp with time zone, relay_sent_web_domain text, roster_version bigint,