import bcrypt from 'bcrypt'; const password = 'admin123'; bcrypt.hash(password, 10).then(hash => { console.log('Password:', password); console.log('Hash:', hash); console.log('\nSQL to update:'); console.log(`UPDATE users SET password = '${hash}' WHERE email = 'o.pareige@itinova.org';`); }).catch(err => { console.error('Error:', err); });