mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
fix(indexers): AB new irc address (#1434)
This commit is contained in:
parent
47a1af8600
commit
6fcbcfb3c3
3 changed files with 18 additions and 2 deletions
|
@ -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';
|
||||
`,
|
||||
}
|
||||
|
|
|
@ -1503,5 +1503,13 @@ ALTER TABLE filter
|
|||
`UPDATE irc_network
|
||||
SET server = 'irc.nebulance.io'
|
||||
WHERE server = 'irc.nebulance.cc';
|
||||
`,
|
||||
`UPDATE irc_network
|
||||
SET server = 'irc.animefriends.moe',
|
||||
name = CASE
|
||||
WHEN name = 'AnimeBytes-IRC' THEN 'AnimeBytes'
|
||||
ELSE name
|
||||
END
|
||||
WHERE server = 'irc.animebytes.tv';
|
||||
`,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue