mirror of
https://github.com/p-stream/backend.git
synced 2026-03-11 17:55:35 +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([])
|
home_section_order String[] @default([])
|
||||||
manual_source_selection Boolean @default(false)
|
manual_source_selection Boolean @default(false)
|
||||||
enable_double_click_to_seek Boolean @default(false)
|
enable_double_click_to_seek Boolean @default(false)
|
||||||
|
enable_auto_resume_on_playback_error Boolean @default(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
model users {
|
model users {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue