| 1 |
2.70 ms |
SELECT t0.id AS id_1, t0.name AS name_2, t0.last_name AS last_name_3, t0.cellphone AS cellphone_4, t0.email AS email_5, t0.password AS password_6, t0.image_profile AS image_profile_7, t0.change_password_at AS change_password_at_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10, t0.status_id AS status_id_11, t0.business_id AS business_id_12 FROM customer t0 WHERE t0.email = ? AND t0.business_id = ? LIMIT 1
Parameters: [
"davidcalva05@gmail.com"
"1"
]
SELECT t0.id AS id_1, t0.name AS name_2, t0.last_name AS last_name_3, t0.cellphone AS cellphone_4, t0.email AS email_5, t0.password AS password_6, t0.image_profile AS image_profile_7, t0.change_password_at AS change_password_at_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10, t0.status_id AS status_id_11, t0.business_id AS business_id_12 FROM customer t0 WHERE t0.email = 'davidcalva05@gmail.com' AND t0.business_id = '1' LIMIT 1;
|
| 2 |
5.24 ms |
SELECT t0.id AS id_1, t0.name AS name_2, t0.active AS active_3, t0.created_at AS created_at_4, t0.updated_at AS updated_at_5 FROM status t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.name AS name_2, t0.active AS active_3, t0.created_at AS created_at_4, t0.updated_at AS updated_at_5 FROM status t0 WHERE t0.id = 1;
|
| 3 |
1.91 ms |
SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.email AS email_4, t0.cellphone AS cellphone_5, t0.logo AS logo_6, t0.active AS active_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9 FROM business t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.email AS email_4, t0.cellphone AS cellphone_5, t0.logo AS logo_6, t0.active AS active_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9 FROM business t0 WHERE t0.id = '1';
|
| 5 |
2.23 ms |
INSERT INTO customer (name, last_name, cellphone, email, password, image_profile, change_password_at, created_at, updated_at, status_id, business_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
"Antony "
"Soprano"
"14725836905164645461348481315"
"davidcalva05@gmail.com"
"$2y$13$FQojEHGzu0GyNT6EaDVqx.4zoM3YFVIDVKSvfTCgJKC5GUvj8Y2pe"
null
null
"2026-04-11 21:16:42"
null
1
1
]
INSERT INTO customer (name, last_name, cellphone, email, password, image_profile, change_password_at, created_at, updated_at, status_id, business_id) VALUES ('Antony ', 'Soprano', '14725836905164645461348481315', 'davidcalva05@gmail.com', '$2y$13$FQojEHGzu0GyNT6EaDVqx.4zoM3YFVIDVKSvfTCgJKC5GUvj8Y2pe', NULL, NULL, '2026-04-11 21:16:42', NULL, 1, 1);
|