REFACTOR: Remove current_stream_title and current_selected_category_id from users table

This commit is contained in:
Chris-1010
2025-02-27 11:54:40 +00:00
parent e79ebd0b15
commit eb65e71cfb
3 changed files with 7 additions and 11 deletions

View File

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