From 92729c1a5b73a83a6ba5885de35af1ac44f309da Mon Sep 17 00:00:00 2001 From: "Justin Ritter@j54j6" Date: Sat, 21 Sep 2024 20:03:36 +0200 Subject: [PATCH] Update subscriptions.json Added new db column "output_format". This column can contain file profile names. All videos are downloaded with the formats listed inside this column (multiple possible) --- scheme/subscriptions.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scheme/subscriptions.json b/scheme/subscriptions.json index 8bf4da6..0048bdc 100644 --- a/scheme/subscriptions.json +++ b/scheme/subscriptions.json @@ -15,7 +15,8 @@ "subscription_content_count": {"type": "integer", "not_null": true}, "subscription_has_new_data": {"type": "integer", "not_null": true, "default": "1"}, "current_subscription_data": {"type": "text", "not_null": true}, - "last_subscription_data": {"type": "text"} + "last_subscription_data": {"type": "text"}, + "output_format": {"type": "text"} } } } \ No newline at end of file