mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
feat(indexers): FearNoPeer update IRC server (#1816)
* feat(indexers): update FearNoPeer IRC server * Update FNP irc server and add migrations for SceneHD and BitHUmen changes all in one. The update for FNP from LibraIRC to P2P-Network will set the nick to nick_0 to not cause any UNIQUE constraint issues. Users will have to update or merge with existing P2P-Network config.
This commit is contained in:
parent
099905f5ec
commit
1227657ae8
3 changed files with 26 additions and 2 deletions
|
@ -1616,5 +1616,17 @@ CREATE INDEX filter_priority_index
|
|||
`UPDATE irc_network
|
||||
SET server = 'irc.fuzer.xyz'
|
||||
WHERE server = 'irc.fuzer.me';
|
||||
`,
|
||||
`UPDATE irc_network
|
||||
SET server = 'irc.scenehd.org'
|
||||
WHERE server = 'irc.scenehd.eu';
|
||||
|
||||
UPDATE irc_network
|
||||
SET server = 'irc.p2p-network.net', name = 'P2P-Network', nick = nick || '_0'
|
||||
WHERE server = 'irc.librairc.net';
|
||||
|
||||
UPDATE irc_network
|
||||
SET server = 'irc.atw-inter.net', name = 'ATW-Inter'
|
||||
WHERE server = 'irc.ircnet.com';
|
||||
`,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue