From 35d96707a4c0ab2b188b7f0976f52791767fefe7 Mon Sep 17 00:00:00 2001 From: vista-man <524715@vistacollege.nl> Date: Tue, 25 Mar 2025 16:49:24 +0100 Subject: [PATCH] =?UTF-8?q?Remove=20low-resolution=20image=20URL=20field?= =?UTF-8?q?=20from=20Pok=C3=A9mon=20database=20schema?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pokedex_database.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pokedex_database.sql b/pokedex_database.sql index 0c7bb91..b1fec94 100644 --- a/pokedex_database.sql +++ b/pokedex_database.sql @@ -9,8 +9,7 @@ CREATE TABLE IF NOT EXISTS pokemon ( weight INT, base_experience INT, species_url VARCHAR(255), - image_url VARCHAR(255), - image_url_low VARCHAR(255) + image_url VARCHAR(255) ); -- Table to store Pokémon types