Add Library and Transcode Options
This commit is contained in:
parent
cdc94d551d
commit
249a415cee
12 changed files with 134 additions and 20 deletions
8
migrations/000011_alter_libraries_table_options.up.sql
Normal file
8
migrations/000011_alter_libraries_table_options.up.sql
Normal file
|
@ -0,0 +1,8 @@
|
|||
ALTER TABLE libraries
|
||||
ADD scan_new_queue_health boolean NOT NULL DEFAULT false,
|
||||
ADD scan_changed_queue_health boolean NOT NULL DEFAULT false,
|
||||
ADD scan_new_queue_transcode boolean NOT NULL DEFAULT false,
|
||||
ADD scan_changed_queue_transcode boolean NOT NULL DEFAULT false,
|
||||
ADD health_ok_queue_transcode boolean NOT NULL DEFAULT false,
|
||||
ADD transcode_replace boolean NOT NULL DEFAULT false,
|
||||
ADD transcode_path VARCHAR (500) NOT NULL DEFAULT '';
|
Loading…
Add table
Add a link
Reference in a new issue