mirror of
https://github.com/p-stream/backend.git
synced 2026-03-11 09:45:34 +00:00
add enable auto resume on error setting
This commit is contained in:
parent
5451057723
commit
7b4e8cae61
2 changed files with 3 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "user_settings" ADD COLUMN "enable_auto_resume_on_playback_error" BOOLEAN NOT NULL DEFAULT false;
|
||||
|
|
@ -92,6 +92,7 @@ model user_settings {
|
|||
home_section_order String[] @default([])
|
||||
manual_source_selection Boolean @default(false)
|
||||
enable_double_click_to_seek Boolean @default(false)
|
||||
enable_auto_resume_on_playback_error Boolean @default(false)
|
||||
}
|
||||
|
||||
model users {
|
||||
|
|
|
|||
Loading…
Reference in a new issue