branding for server
This commit is contained in:
parent
d70148aca3
commit
a336c99d6d
6 changed files with 89 additions and 3 deletions
|
|
@ -0,0 +1,3 @@
|
|||
UPDATE public.users
|
||||
SET first_name = 'Telegram', username = 'telegram', updated_at = now()
|
||||
WHERE id = 777000;
|
||||
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue