branding for server

This commit is contained in:
onysd 2026-07-13 10:30:24 +03:00
parent d70148aca3
commit a336c99d6d
6 changed files with 89 additions and 3 deletions

View file

@ -0,0 +1,3 @@
UPDATE public.users
SET first_name = 'Telegram', username = 'telegram', updated_at = now()
WHERE id = 777000;

View file

@ -0,0 +1,8 @@
-- Rebrand the built-in official system account (777000) from the upstream
-- gramsrv default "Telegram"/@telegram to this fork's own identity. Existing
-- databases already seeded by migration 0001 need this as a follow-up
-- UPDATE; migration 0001 itself is never replayed on an already-migrated
-- database.
UPDATE public.users
SET first_name = 'OwpenGram', username = 'owpengram', updated_at = now()
WHERE id = 777000;