mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-12-17 02:32:21 +00:00
I don't even know.
Filled out API for user management Proper escaping of user input for SQL queries (stream keys aren't user input) Filled out frontend with profile management, vods, etc. I don't remember there's probably more, fuck.
This commit is contained in:
@@ -7,5 +7,10 @@ CREATE TABLE users(
|
||||
password_hash BINARY(60),
|
||||
stream_key CHAR(20),
|
||||
record_flag TINYINT,
|
||||
is_mod TINYINT
|
||||
);
|
||||
CREATE TABLE user_meta(
|
||||
username VARCHAR(25),
|
||||
title VARCHAR(120),
|
||||
about VARCHAR(5000),
|
||||
live TINYINT
|
||||
);
|
||||
Reference in New Issue
Block a user