[TSM.ID].[11031972] PXE : Platform X Ecosystem I [118 Module -LIVE-]

This commit is contained in:
TSM.ID
2026-05-25 03:50:05 +07:00
commit e820143b3c
673 changed files with 101320 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
const postgres = require('postgres');
const sql = postgres('postgresql://jumpa_admin:JumpaS3cur3%21%40%23@160.187.143.253:5432/jumpadb');
async function check() {
const users = await sql`SELECT id, tenant_id, email, role, password_hash FROM users WHERE email = 'tsm@tsm.id'`;
console.log('Users:', users);
process.exit(0);
}
check();