0.98 ms (18.70%)
|
1 |
INSERT INTO loan (start_date, due_date, actual_return_date, status, notes, extension_requested, extension_requested_until, extension_note, created_at, updated_at, article_id, user_id, handed_out_by_id, returned_to_id, created_by_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
"2026-06-01 00:00:00"
"2026-06-22 00:00:00"
null
"active"
null
0
null
null
"2026-06-11 18:57:09"
"2026-06-11 18:57:09"
99
5
2
null
1
]
INSERT INTO loan (start_date, due_date, actual_return_date, status, notes, extension_requested, extension_requested_until, extension_note, created_at, updated_at, article_id, user_id, handed_out_by_id, returned_to_id, created_by_id) VALUES ('2026-06-01 00:00:00', '2026-06-22 00:00:00', NULL, 'active', NULL, 0, NULL, NULL, '2026-06-11 18:57:09', '2026-06-11 18:57:09', 99, 5, 2, NULL, 1);
|
0.93 ms (17.69%)
|
2 |
SELECT a0_.id AS id_0, a0_.email AS email_1, a0_.first_name AS first_name_2, a0_.last_name AS last_name_3, a0_.roles AS roles_4, a0_.password AS password_5, a0_.shibboleth_id AS shibboleth_id_6, a0_.enabled AS enabled_7, a0_.created_at AS created_at_8, a0_.updated_at AS updated_at_9, a0_.last_login_at AS last_login_at_10 FROM app_user a0_ WHERE a0_.id IN (?)
SELECT a0_.id AS id_0, a0_.email AS email_1, a0_.first_name AS first_name_2, a0_.last_name AS last_name_3, a0_.roles AS roles_4, a0_.password AS password_5, a0_.shibboleth_id AS shibboleth_id_6, a0_.enabled AS enabled_7, a0_.created_at AS created_at_8, a0_.updated_at AS updated_at_9, a0_.last_login_at AS last_login_at_10 FROM app_user a0_ WHERE a0_.id IN ('5');
|
0.62 ms (11.91%)
|
1 |
SELECT a0_.id AS id_0, a0_.name AS name_1, a0_.inventory_number AS inventory_number_2, a0_.image AS image_3, a0_.description AS description_4, a0_.notes AS notes_5, a0_.status AS status_6, a0_.restrict_to_role AS restrict_to_role_7, a0_.created_at AS created_at_8, a0_.updated_at AS updated_at_9, a0_.article_type_id AS article_type_id_10, a0_.category_id AS category_id_11, a0_.created_by_id AS created_by_id_12 FROM article a0_ WHERE a0_.id IN (?)
SELECT a0_.id AS id_0, a0_.name AS name_1, a0_.inventory_number AS inventory_number_2, a0_.image AS image_3, a0_.description AS description_4, a0_.notes AS notes_5, a0_.status AS status_6, a0_.restrict_to_role AS restrict_to_role_7, a0_.created_at AS created_at_8, a0_.updated_at AS updated_at_9, a0_.article_type_id AS article_type_id_10, a0_.category_id AS category_id_11, a0_.created_by_id AS created_by_id_12 FROM article a0_ WHERE a0_.id IN ('99');
|
0.62 ms (11.86%)
|
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.first_name AS first_name_3, t0.last_name AS last_name_4, t0.roles AS roles_5, t0.password AS password_6, t0.shibboleth_id AS shibboleth_id_7, t0.enabled AS enabled_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10, t0.last_login_at AS last_login_at_11 FROM app_user t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.email AS email_2, t0.first_name AS first_name_3, t0.last_name AS last_name_4, t0.roles AS roles_5, t0.password AS password_6, t0.shibboleth_id AS shibboleth_id_7, t0.enabled AS enabled_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10, t0.last_login_at AS last_login_at_11 FROM app_user t0 WHERE t0.id = 1;
|
0.43 ms (8.20%)
|
1 |
INSERT INTO audit_log (action, entity_type, entity_id, ip_address, created_at, user_id) VALUES (?, ?, ?, ?, ?, ?)
Parameters: [
"loan.created"
"App\Entity\Loan"
1
"84.58.93.235"
"2026-06-11 18:57:09"
1
]
INSERT INTO audit_log (action, entity_type, entity_id, ip_address, created_at, user_id) VALUES ('loan.created', 'App\\Entity\\Loan', 1, '84.58.93.235', '2026-06-11 18:57:09', 1);
|