fix(indexers): AB new irc address (#1434)

This commit is contained in:
martylukyy 2024-02-27 12:03:59 +01:00 committed by GitHub
parent 47a1af8600
commit 6fcbcfb3c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 2 deletions

View file

@ -865,5 +865,13 @@ ALTER TABLE filter
`,
`ALTER TABLE "release"
ALTER COLUMN timestamp TYPE timestamptz USING timestamp AT TIME ZONE 'UTC';
`,
`UPDATE irc_network
SET server = 'irc.animefriends.moe',
name = CASE
WHEN name = 'AnimeBytes-IRC' THEN 'AnimeBytes'
ELSE name
END
WHERE server = 'irc.animebytes.tv';
`,
}