From 28a468477d5ada563430d81840aa0da6ffbed332 Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Thu, 18 Apr 2024 14:15:03 -0700 Subject: [PATCH] Update DATABASE.md Fixed some minor formatting issues --- DATABASE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DATABASE.md b/DATABASE.md index 7725448..75e649e 100644 --- a/DATABASE.md +++ b/DATABASE.md @@ -185,8 +185,8 @@ columns | type | role `video_description` | `TEXT` | edit input | The description field of the video. If already set, used as the default description when editing instead of `description`. `video_tags` | `TEXT[]` | edit input | Custom tags to annotate the video with. If already set, used as the default when editing instead of `tags`. `video_channel` | `TEXT` | edit input | The twitch channel to cut the video from. If already set, used as the default channel selection when editing, instead of a pre-configured editor default. While this will almost always be the default value, it's a useful thing to be able to change should the need arise. -`video_quality` | `TEXT NOT NULL DEFAULT 'source' | edit input | The stream quality to cut the video from. Used as the default quality selection when editing. While this will almost always be the default value, it's a useful thing to be able to change should the need arise. -`thumbnail_mode` | `ENUM NOT NULL DEFAULT 'TEMPLATE' | edit input | The thumbnail mode. See "Thumbnails" above. +`video_quality` | `TEXT NOT NULL DEFAULT 'source'` | edit input | The stream quality to cut the video from. Used as the default quality selection when editing. While this will almost always be the default value, it's a useful thing to be able to change should the need arise. +`thumbnail_mode` | `ENUM NOT NULL DEFAULT 'TEMPLATE'` | edit input | The thumbnail mode. See "Thumbnails" above. `thumbnail_time` | `TIMESTAMP` | edit input | The video time to grab a frame from for the thumbnail in BARE and TEMPLATE modes. `thumbnail_template` | `TEXT` | edit input | The template name to use for the thumbnail in TEMPLATE mode. `thumbnail_image` | `BYTEA` | edit input | In CUSTOM mode, the thumbnail image. In BARE and TEMPLATE modes, the generated thumbnail image, or NULL to indicate it should be generated when next needed.