sync, implemented sort, viewing user pages & articles written, updating db

This commit is contained in:
2025-04-03 10:50:58 -06:00
parent cec9091ee0
commit e5af3aca66
12 changed files with 231 additions and 54 deletions
+5
View File
@@ -21,6 +21,11 @@ CREATE TABLE user (
last_active TIMESTAMP DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
is_active BOOLEAN DEFAULT FALSE,
profile_picture VARCHAR(256),
bio VARCHAR(256),
x_username VARCHAR(32),
fb_username VARCHAR(32),
ig_username VARCHAR(32),
website VARCHAR(64),
FOREIGN KEY (role_id) REFERENCES roles (role_id)
);