Add sample data to user_pokemon table

This commit is contained in:
vista-man
2025-03-27 09:54:42 +01:00
parent 4ec771769d
commit f51b3d6a83

View File

@@ -105,3 +105,12 @@ CREATE TABLE IF NOT EXISTS user_pokemon (
PRIMARY KEY (user_id, pokemon_id), PRIMARY KEY (user_id, pokemon_id),
FOREIGN KEY (pokemon_id) REFERENCES pokemon(id) FOREIGN KEY (pokemon_id) REFERENCES pokemon(id)
); );
-- Insert sample data into the user_pokemon table
INSERT INTO user_pokemon (user_id, pokemon_id) VALUES
(1, 1),
(1, 2),
(2, 3),
(2, 4),
(3, 5),
(3, 6);