mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:49:02 +00:00
Add admin setting to change max concurrent workers
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
|
||||
ALTER TABLE site_info
|
||||
DROP COLUMN IF EXISTS periodic_scan_interval,
|
||||
DrOP COLUMN IF EXISTS concurrent_workers;
|
||||
@@ -1,3 +1,4 @@
|
||||
|
||||
ALTER TABLE site_info
|
||||
ADD COLUMN IF NOT EXISTS periodic_scan_interval int(8) NOT NULL DEFAULT 0;
|
||||
ADD COLUMN IF NOT EXISTS periodic_scan_interval int(8) NOT NULL DEFAULT 0,
|
||||
ADD COLUMN IF NOT EXISTS concurrent_workers int(8) NOT NULL DEFAULT 3;
|
||||
|
||||
Reference in New Issue
Block a user