import db from '../src/lib/db.js'; // Create another test project with coordinates in a different location const project = db.prepare(` INSERT INTO projects ( contract_id, project_name, project_number, address, city, coordinates, project_type, project_status ) VALUES (?, ?, ?, ?, ?, ?, ?, ?) `).run( 3, // Using the existing contract 'Test Project in Warsaw', '2/TEST/2025', 'Warsaw Center, Poland', 'Warsaw', '52.2297,21.0122', // Warsaw coordinates 'construction', 'in_progress_construction' ); console.log('Additional test project created!'); console.log('Project ID:', project.lastInsertRowid);