core: set via_group_link_uri for groups (#6137)

* core: set via_group_link_uri for groups

* schema

* plans

* schema

* add to type

* plans, api
This commit is contained in:
spaced4ndy
2025-08-01 15:23:52 +00:00
committed by GitHub
parent d3a5936d17
commit 18a00511a7
16 changed files with 139 additions and 68 deletions
@@ -303,7 +303,8 @@ CREATE TABLE test_chat_schema.connections (
pq_rcv_enabled smallint,
quota_err_counter bigint DEFAULT 0 NOT NULL,
short_link_inv bytea,
via_short_link_contact bytea
via_short_link_contact bytea,
via_contact_uri bytea
);
@@ -653,7 +654,8 @@ CREATE TABLE test_chat_schema.groups (
conn_link_started_connection smallint DEFAULT 0 NOT NULL,
welcome_shared_msg_id bytea,
request_shared_msg_id bytea,
conn_link_prepared_connection smallint DEFAULT 0 NOT NULL
conn_link_prepared_connection smallint DEFAULT 0 NOT NULL,
via_group_link_uri bytea
);