1 |
1.19 ms |
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.is_verified AS is_verified_5, t6.id AS id_7, t6.name AS name_8, t6.business_id AS business_id_9, t6.tax_id AS tax_id_10, t6.vat_id AS vat_id_11, t6.address AS address_12, t6.city AS city_13, t6.postal_code AS postal_code_14, t6.country AS country_15, t6.company_description AS company_description_16, t6.auth_id AS auth_id_17, t6.logo_image_id AS logo_image_id_18 FROM auth t0 LEFT JOIN organization t6 ON t6.auth_id = t0.id WHERE t0.email = ? LIMIT 1
Parameters: [
"ta.gray321@gmail.com"
]
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.is_verified AS is_verified_5, t6.id AS id_7, t6.name AS name_8, t6.business_id AS business_id_9, t6.tax_id AS tax_id_10, t6.vat_id AS vat_id_11, t6.address AS address_12, t6.city AS city_13, t6.postal_code AS postal_code_14, t6.country AS country_15, t6.company_description AS company_description_16, t6.auth_id AS auth_id_17, t6.logo_image_id AS logo_image_id_18 FROM auth t0 LEFT JOIN organization t6 ON t6.auth_id = t0.id WHERE t0.email = 'ta.gray321@gmail.com' LIMIT 1;
|
3 |
0.45 ms |
INSERT INTO auth (email, roles, password, is_verified) VALUES (?, ?, ?, ?)
Parameters: [
"ta.gray321@gmail.com"
"["ROLE_USER"]"
"$2y$13$PEbikk7bsIpiFngtyP2vpuHYfSV/MQEWonon.B4eeA6wU2KIf24qW"
0
]
INSERT INTO auth (email, roles, password, is_verified) VALUES ('ta.gray321@gmail.com', '[\"ROLE_USER\"]', '$2y$13$PEbikk7bsIpiFngtyP2vpuHYfSV/MQEWonon.B4eeA6wU2KIf24qW', 0);
|
4 |
0.28 ms |
INSERT INTO user (email, phone_number, first_name, last_name, job_position, auth_id) VALUES (?, ?, ?, ?, ?, ?)
Parameters: [
"ta.gray321@gmail.com"
"MyName"
"Alice"
"MyName"
"Hello"
447
]
INSERT INTO user (email, phone_number, first_name, last_name, job_position, auth_id) VALUES ('ta.gray321@gmail.com', 'MyName', 'Alice', 'MyName', 'Hello', 447);
|