Files
silo-server/migrations/sql/20260607161414_add_audiobookshelf_compat_enabled.sql
339ed20074 fix(audiobooks): improve poster enrichment throughput (#94)
* fix(audiobooks): improve poster enrichment throughput

* fix(audiobooks): enable ABS compat by default

* chore(audiobooks): remove stale feature flag setting

* fix(audiobooks): validate scoped scan roots

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
2026-06-08 18:17:08 -04:00

12 lines
318 B
SQL

-- +goose Up
-- +goose StatementBegin
INSERT INTO server_settings (key, value)
VALUES ('audiobookshelf_compat.enabled', 'true')
ON CONFLICT (key) DO NOTHING;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DELETE FROM server_settings WHERE key = 'audiobookshelf_compat.enabled';
-- +goose StatementEnd