diff --git a/backend/init_db.py b/backend/init_db.py index b7b8776..8908b2a 100644 --- a/backend/init_db.py +++ b/backend/init_db.py @@ -12,9 +12,15 @@ def populate_initial_data(conn): cursor = conn.cursor() animals = [ - ('Luna', 'Dog', 'Labrador Mix', 2, 'Playful and energetic', '/images/luna.jpg', 'Available'), - ('Oliver', 'Cat', 'Tabby', 4, 'Independent but affectionate', '/images/oliver.jpg', 'Available'), - ('Max', 'Dog', 'German Shepherd', 3, 'Loyal and intelligent', '/images/max.jpg', 'Available') + ('Luna', 'Dog', 'Labrador Mix', 2, + 'Playful and energetic', '/images/luna.jpg', + 'Available'), + ('Oliver', 'Cat', 'Tabby', 4, + 'Independent but affectionate', '/images/oliver.jpg', + 'Available'), + ('Max', 'Dog', 'German Shepherd', 3, + 'Loyal and intelligent', '/images/max.jpg', + 'Available') ] for animal in animals: