UPDATE: Add more category thumbnails & rename some categories

This commit is contained in:
Chris-1010
2025-02-27 14:02:44 +00:00
parent ff422f06f7
commit de7a01d893
24 changed files with 30 additions and 30 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 KiB

After

Width:  |  Height:  |  Size: 748 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 559 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 518 KiB

Binary file not shown.

View File

@@ -45,35 +45,35 @@ INSERT INTO followed_categories (user_id, category_id) VALUES
(5, 5); (5, 5);
-- Sample Data for categories -- Sample Data for categories
INSERT INTO categories (category_name) VALUES INSERT INTO categories (category_name) VALUES
('Gaming'), ('Gaming'),
('Music'), ('Music'),
('Art'), ('Art'),
('Education'), ('Education'),
('Sports'), ('Sports'),
('League of Legends'), ('League of Legends'),
('Fortnite'), ('Fortnite'),
('Minecraft'), ('Minecraft'),
('Call of Duty'), ('Call of Duty'),
('Counter-Strike 2'), ('Counter-Strike 2'),
('Valorant'), ('Valorant'),
('Dota 2'), ('Dota 2'),
('Apex Legends'), ('Apex Legends'),
('Grand Theft Auto V'), ('Grand Theft Auto V'),
('The Legend of Zelda Breath of the Wild'), ('The Legend of Zelda: Tears of the Kingdom'),
('Elden Ring'), ('Elden Ring'),
('Red Dead Redemption 2'), ('Red Dead Redemption 2'),
('Cyberpunk 2077'), ('Cyberpunk 2077'),
('Super Smash Bros Ultimate'), ('Super Smash Bros. Ultimate'),
('Overwatch 2'), ('Overwatch 2'),
('Genshin Impact'), ('Genshin Impact'),
('World of Warcraft'), ('World of Warcraft'),
('Rocket League'), ('Rocket League'),
('FIFA 24'), ('EA Sports FC 25'),
('The Sims 4'), ('The Sims 4'),
('Among Us'), ('Among Us'),
('Dead by Daylight'), ('Dead by Daylight'),
('Hogwarts Legacy'); ('Hogwarts Legacy');
-- Sample Data for streams -- Sample Data for streams

View File

@@ -10,7 +10,7 @@ CREATE TABLE users
is_partnered BOOLEAN NOT NULL DEFAULT 0, is_partnered BOOLEAN NOT NULL DEFAULT 0,
is_live BOOLEAN NOT NULL DEFAULT 0, is_live BOOLEAN NOT NULL DEFAULT 0,
bio VARCHAR(1024) DEFAULT 'This user does not have a Bio.', bio VARCHAR(1024) DEFAULT 'This user does not have a Bio.',
is_admin BOOLEAN NOT NULL DEFAULT 0, is_admin BOOLEAN NOT NULL DEFAULT 0
); );
SELECT * FROM users; SELECT * FROM users;