-- Check existing school users
SELECT id, email, first_name, last_name, user_type, status 
FROM users 
WHERE user_type = 'school' 
LIMIT 5;

-- Create test school user (run this if no schools exist)
INSERT INTO users (email, password_hash, first_name, last_name, user_type, status) 
VALUES ('school@test.com', '$2a$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'Test', 'School', 'school', 'active');

-- Password for above user is: password