* 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>
12 lines
318 B
SQL
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
|