import { tenantDb } from '../src/config/database'; async function main() { const pool = await tenantDb.getPool('81116985-03cd-4843-97ba-05e8be9917c6', 'horux_auza640701ti9'); const result = await pool.query("SELECT column_name FROM information_schema.columns WHERE table_name = 'fiel_contribuyente'"); console.log(result.rows); await pool.end(); } main().catch(e => { console.error(e); process.exit(1); });