added user avatars

This commit is contained in:
Mystikfluu
2022-06-11 15:36:50 +02:00
parent 5a6499cd48
commit 6c239f0e9a
9 changed files with 1496 additions and 21 deletions
+1 -1
View File
@@ -11,11 +11,11 @@ CREATE TABLE `users` (
`User_CreationIP` varchar(45) NOT NULL DEFAULT 'None',
`User_LastIP` varchar(45) NOT NULL DEFAULT 'None',
`User_Bio` varchar(100) DEFAULT 'wow such empty',
`User_Avatar` varchar(100) DEFAULT NULL,
PRIMARY KEY (`User_ID`,`User_Name`),
UNIQUE KEY `User_Name_UNIQUE` (`User_Name`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
CREATE TABLE `posts` (
`post_id` bigint NOT NULL AUTO_INCREMENT,
`post_user_name` varchar(100) NOT NULL,