Implements collectible usernames, official verification workflows, and third-party bot verification after maintainer protocol and migration review. The composite activity/moderation rating remains an admin-only read model; Telegram Stars Rating wire fields stay unset pending a dedicated official-semantics implementation. Reviewed-Head: 2796345775ea0f908fb7734601e5e1dee4b653b9 Original-Head: fa082b892fd5180c9c9bc53c81c21cf5d250a75b Co-authored-by: Egor Egorov <business.egor.sg@gmail.com>
9 lines
423 B
SQL
9 lines
423 B
SQL
-- Remove the built-in @verifybot seed. Its private history is left alone: chat
|
|
-- rows reference the account, and dropping them would rewrite users' dialogs.
|
|
DELETE FROM public.read_model_versions
|
|
WHERE owner_user_id = 1250000011 AND peer_type = 'user' AND peer_id = 1250000011;
|
|
|
|
DELETE FROM public.peer_usernames
|
|
WHERE peer_type = 'user' AND peer_id = 1250000011;
|
|
|
|
DELETE FROM public.bots WHERE bot_user_id = 1250000011;
|