0.93 ms (15.24%)
|
1 |
SELECT t0.id AS id_1, t0.code AS code_2, t0.provider AS provider_3, t0.external_order_id AS external_order_id_4, t0.pay_token AS pay_token_5, t0.notif_token AS notif_token_6, t0.payment_url AS payment_url_7, t0.transaction_id AS transaction_id_8, t0.is_success AS is_success_9, t0.notified_at AS notified_at_10, t0.notify_content AS notify_content_11, t0.has_error AS has_error_12, t0.error_text AS error_text_13, t0.payload AS payload_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.transfert_id AS transfert_id_17 FROM payment_attempt t0 WHERE t0.code = ? LIMIT 1
Parameters: [
"PMN6AA00F57A9CB720260908133623"
]
SELECT t0.id AS id_1, t0.code AS code_2, t0.provider AS provider_3, t0.external_order_id AS external_order_id_4, t0.pay_token AS pay_token_5, t0.notif_token AS notif_token_6, t0.payment_url AS payment_url_7, t0.transaction_id AS transaction_id_8, t0.is_success AS is_success_9, t0.notified_at AS notified_at_10, t0.notify_content AS notify_content_11, t0.has_error AS has_error_12, t0.error_text AS error_text_13, t0.payload AS payload_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.transfert_id AS transfert_id_17 FROM payment_attempt t0 WHERE t0.code = 'PMN6AA00F57A9CB720260908133623' LIMIT 1;
|
0.90 ms (14.74%)
|
1 |
SELECT t0.id AS id_1, t0.code AS code_2, t0.reference AS reference_3, t0.montant AS montant_4, t0.frais AS frais_5, t0.destinataire_phone AS destinataire_phone_6, t0.note AS note_7, t0.status AS status_8, t0.paid_at AS paid_at_9, t0.sent_at AS sent_at_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.emetteur_id AS emetteur_id_13 FROM transfert t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.code AS code_2, t0.reference AS reference_3, t0.montant AS montant_4, t0.frais AS frais_5, t0.destinataire_phone AS destinataire_phone_6, t0.note AS note_7, t0.status AS status_8, t0.paid_at AS paid_at_9, t0.sent_at AS sent_at_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.emetteur_id AS emetteur_id_13 FROM transfert t0 WHERE t0.id = 6;
|
0.84 ms (13.80%)
|
1 |
UPDATE payment_attempt SET transaction_id = ?, is_success = ?, notified_at = ?, notify_content = ?, updated_at = ? WHERE id = ?
Parameters: [
"MP260908.1637.A64239"
1
"2026-09-08 13:37:20"
"{"status":"SUCCESS","notif_token":"xtawbx0kn9pjsjyfeghit7urovzifk1d","txnid":"MP260908.1637.A64239"}"
"2026-09-08 13:37:20"
6
]
UPDATE payment_attempt SET transaction_id = 'MP260908.1637.A64239', is_success = 1, notified_at = '2026-09-08 13:37:20', notify_content = '{\"status\":\"SUCCESS\",\"notif_token\":\"xtawbx0kn9pjsjyfeghit7urovzifk1d\",\"txnid\":\"MP260908.1637.A64239\"}', updated_at = '2026-09-08 13:37:20' WHERE id = 6;
|