3.73 ms (29.55%)
|
1 |
SELECT t0.id AS id_1, t0.license_key AS license_key_2, t0.status AS status_3, t0.valid_from AS valid_from_4, t0.valid_until AS valid_until_5, t0.max_activations AS max_activations_6, t0.activations_count AS activations_count_7, t0.notes AS notes_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10, t0.product_id AS product_id_11 FROM licenses t0 WHERE t0.license_key = ? LIMIT 1
Parameters: [
"SG6S-X32Z-UFWW-R8DU"
]
SELECT t0.id AS id_1, t0.license_key AS license_key_2, t0.status AS status_3, t0.valid_from AS valid_from_4, t0.valid_until AS valid_until_5, t0.max_activations AS max_activations_6, t0.activations_count AS activations_count_7, t0.notes AS notes_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10, t0.product_id AS product_id_11 FROM licenses t0 WHERE t0.license_key = 'SG6S-X32Z-UFWW-R8DU' LIMIT 1;
|
1.51 ms (12.01%)
|
1 |
SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.code AS code_2, p0_.description AS description_3, p0_.is_active AS is_active_4, p0_.created_at AS created_at_5, p0_.updated_at AS updated_at_6 FROM products p0_ WHERE p0_.id IN (?)
Parameters: [
"019d915d-3461-7e36-b99d-ff76b0f5e149"
]
SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.code AS code_2, p0_.description AS description_3, p0_.is_active AS is_active_4, p0_.created_at AS created_at_5, p0_.updated_at AS updated_at_6 FROM products p0_ WHERE p0_.id IN ('019d915d-3461-7e36-b99d-ff76b0f5e149');
|
1.02 ms (8.09%)
|
1 |
INSERT INTO licenses (id, license_key, status, valid_from, valid_until, max_activations, activations_count, notes, created_at, updated_at, product_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
"019d91a2-fa40-71ca-8f1a-c13b85153c78"
"SG6S-X32Z-UFWW-R8DU"
"pending"
"2026-04-15 17:54:00"
null
1
0
"123"
"2026-04-15 17:54:30"
"2026-04-15 17:54:30"
"019d915d-3461-7e36-b99d-ff76b0f5e149"
]
INSERT INTO licenses (id, license_key, status, valid_from, valid_until, max_activations, activations_count, notes, created_at, updated_at, product_id) VALUES ('019d91a2-fa40-71ca-8f1a-c13b85153c78', 'SG6S-X32Z-UFWW-R8DU', 'pending', '2026-04-15 17:54:00', NULL, 1, 0, '123', '2026-04-15 17:54:30', '2026-04-15 17:54:30', '019d915d-3461-7e36-b99d-ff76b0f5e149');
|