fix(indexers): new baseURL for Fuzer (#1724)

* fix(indexers): new URL for Fuzer

* fix(indexers): add database migrations
This commit is contained in:
martylukyy 2024-09-17 15:09:23 +02:00 committed by GitHub
parent 425c3b21ef
commit 490308c9c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 1 deletions

View file

@ -954,5 +954,9 @@ ALTER TABLE irc_network
ALTER TABLE irc_network
ADD FOREIGN KEY (proxy_id) REFERENCES proxy
ON DELETE SET NULL;
`,
`UPDATE indexer
SET base_url = 'https://fuzer.xyz/'
WHERE base_url = 'https://fuzer.me/';
`,
}