PATCH: Fixed error that caused users without a set stream title to be unable to stream

This commit is contained in:
2025-02-12 19:56:31 +00:00
parent 415315b1da
commit df9fb69b7b
3 changed files with 2 additions and 3 deletions

View File

@@ -11,8 +11,8 @@ CREATE TABLE users
is_live BOOLEAN NOT NULL DEFAULT 0,
bio VARCHAR(1024) DEFAULT 'This user does not have a Bio.',
current_stream_title VARCHAR(100),
current_selected_category_id INTEGER
current_stream_title VARCHAR(100) DEFAULT 'Stream',
current_selected_category_id INTEGER DEFAULT 1
);
SELECT * FROM users;