Improved chat.py and created a temporary chat.html to be transferred to react later

This commit is contained in:
white
2025-01-24 17:02:56 +00:00
parent 8ec60b1c41
commit ae9cd96333
6 changed files with 311 additions and 37 deletions

Binary file not shown.

View File

@@ -52,7 +52,7 @@ CREATE TABLE follows
DROP TABLE IF EXISTS chat;
CREATE TABLE chat
(
message_id INTEGER,
message_id INTEGER PRIMARY KEY AUTOINCREMENT,
stream_id INTEGER NOT NULL,
chatter_id VARCHAR(50) NOT NULL,
message VARCHAR(256) NOT NULL,