UPDATE: Added custom thumbnail bool to stream table

This commit is contained in:
2025-03-02 16:49:03 +00:00
parent 25cc03302c
commit 8cf04569e8
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View File

@@ -52,6 +52,7 @@ CREATE TABLE streams
start_time DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, start_time DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
num_viewers INTEGER NOT NULL DEFAULT 0, num_viewers INTEGER NOT NULL DEFAULT 0,
category_id INTEGER NOT NULL, category_id INTEGER NOT NULL,
custom_thumbnail BOOLEAN NOT NULL DEFAULT 0,
FOREIGN KEY (category_id) REFERENCES categories(category_id), FOREIGN KEY (category_id) REFERENCES categories(category_id),
FOREIGN KEY (user_id) REFERENCES users(user_id) FOREIGN KEY (user_id) REFERENCES users(user_id)
); );