merged from gramsrv upstream

This commit is contained in:
onysd 2026-09-01 12:06:31 +03:00
parent 79c64ee916
commit 21a0856587
651 changed files with 54774 additions and 4590 deletions

View file

@ -2648,7 +2648,9 @@ CREATE TABLE public.secret_chats (
history_deleted boolean DEFAULT false NOT NULL,
random_id integer NOT NULL,
date integer NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL
created_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT secret_chats_nonzero_id CHECK ((chat_id <> 0)),
CONSTRAINT secret_chats_random_id_is_chat_id CHECK ((chat_id = random_id))
);
@ -4524,13 +4526,6 @@ CREATE INDEX upload_parts_object_key_idx ON public.upload_parts USING btree (obj
CREATE UNIQUE INDEX uq_emq_dedup ON public.encrypted_message_queue USING btree (receiver_auth_key_id, chat_id, random_id);
--
-- Name: uq_secret_chats_admin_random; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX uq_secret_chats_admin_random ON public.secret_chats USING btree (admin_auth_key_id, random_id) WHERE (state <> 'discarded'::text);
--
-- Name: user_channel_member_index_admined_public_idx; Type: INDEX; Schema: public; Owner: -
--