#!/usr/bin/env node /** * Check for test records in production database (read-only) * Shows what would be deleted without making any changes */ const { execSync } = require('child_process'); // Database connection string const DB_URL = 'postgresql://euchre_camp:LINGO5row_hiding@dhg.lol:5432/euchre_camp'; // Helper to run SQL and log results function runSQL(sql, description) { console.log(`\nšŸ” ${description}...`); try { const result = execSync(`psql "${DB_URL}" -c "${sql}"`, { encoding: 'utf8' }); console.log(result); return true; } catch (error) { console.error(`āŒ Error: ${error.message}`); return false; } } // Helper to count records matching pattern function countRecords(table, column, pattern) { const sql = `SELECT COUNT(*) FROM ${table} WHERE ${column} LIKE '${pattern}';`; try { const result = execSync(`psql "${DB_URL}" -c "${sql}" -t`, { encoding: 'utf8' }).trim(); return parseInt(result); } catch (error) { return 0; } } console.log('šŸ” Checking test records in production database'); console.log('=============================================\n'); // Count test players const testPlayerCount = countRecords('players', 'name', '%Test%') + countRecords('players', 'name', '%Setup%') + countRecords('players', 'name', '%Home Test%'); console.log(`Test players found: ${testPlayerCount}`); // Count test tournaments const testEventCount = countRecords('events', 'name', '%Test%') + countRecords('events', 'name', '%Setup%'); console.log(`Test tournaments found: ${testEventCount}`); // Count test users const testUserCount = countRecords('users', 'email', '%test%') + countRecords('users', 'email', '%setup%'); console.log(`Test users found: ${testUserCount}`); // Show test players runSQL(` SELECT id, name FROM players WHERE name LIKE '%Test%' OR name LIKE '%Setup%' OR name LIKE '%Home Test%' ORDER BY name; `, 'Test players list'); // Show test events runSQL(` SELECT id, name FROM events WHERE name LIKE '%Test%' OR name LIKE '%Setup%' ORDER BY name; `, 'Test events list'); // Show test users runSQL(` SELECT id, email, name FROM users WHERE email LIKE '%test%' OR email LIKE '%setup%' ORDER BY email; `, 'Test users list'); // Check which test players have matches runSQL(` SELECT p.id, p.name FROM players p WHERE (p.name LIKE '%Test%' OR p.name LIKE '%Setup%' OR p.name LIKE '%Home Test%') AND EXISTS ( SELECT 1 FROM matches m WHERE m."team1P1Id" = p.id OR m."team1P2Id" = p.id OR m."team2P1Id" = p.id OR m."team2P2Id" = p.id ) ORDER BY p.name; `, 'Test players with matches (will be preserved)'); // Check which test events have matches runSQL(` SELECT e.id, e.name FROM events e WHERE (e.name LIKE '%Test%' OR e.name LIKE '%Setup%') AND EXISTS ( SELECT 1 FROM matches m WHERE m."eventId" = e.id ) ORDER BY e.name; `, 'Test events with matches (will be preserved)'); console.log('\nāœ… Check complete!'); console.log('\nšŸ’” Summary:'); console.log(' - Test players without matches can be deleted'); console.log(' - Test tournaments without matches can be deleted'); console.log(' - Test users without player associations can be deleted'); console.log(' - Records with matches/associations are preserved');