| 2 |
4.69 ms |
SELECT t0.id AS id_1, t0.email AS email_2, t0.hashed_password AS hashed_password_3, t0.display_name AS display_name_4, t0.roles AS roles_5, t0.avatar_url AS avatar_url_6, t0.theme_config AS theme_config_7, t0.status AS status_8, t0.custom_status_text AS custom_status_text_9, t0.last_seen_at AS last_seen_at_10, t0.created_at AS created_at_11, t0.is_email_verified AS is_email_verified_12, t0.email_verification_token AS email_verification_token_13, t0.email_verification_token_expires_at AS email_verification_token_expires_at_14, t0.account_type AS account_type_15, t0.description AS description_16, t0.organization_category AS organization_category_17 FROM users t0 WHERE t0.email = ? LIMIT 1
Parameters: [
"robbinsrus@msn.com"
]
SELECT t0.id AS id_1, t0.email AS email_2, t0.hashed_password AS hashed_password_3, t0.display_name AS display_name_4, t0.roles AS roles_5, t0.avatar_url AS avatar_url_6, t0.theme_config AS theme_config_7, t0.status AS status_8, t0.custom_status_text AS custom_status_text_9, t0.last_seen_at AS last_seen_at_10, t0.created_at AS created_at_11, t0.is_email_verified AS is_email_verified_12, t0.email_verification_token AS email_verification_token_13, t0.email_verification_token_expires_at AS email_verification_token_expires_at_14, t0.account_type AS account_type_15, t0.description AS description_16, t0.organization_category AS organization_category_17 FROM users t0 WHERE t0.email = 'robbinsrus@msn.com' LIMIT 1;
|
| 4 |
1.25 ms |
INSERT INTO users (id, email, hashed_password, display_name, roles, avatar_url, theme_config, status, custom_status_text, last_seen_at, created_at, is_email_verified, email_verification_token, email_verification_token_expires_at, account_type, description, organization_category) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
"019da0aa-6ad4-7b0e-b82b-5c35219247ac"
"robbinsrus@msn.com"
"$2y$13$xinShPJjt2MRuIIBHrM97e9sWhCihHdnozdicllRqNHdAGUsgY.M2"
"tshnodueut"
"["ROLE_USER"]"
null
"[]"
"offline"
null
null
"2026-04-18 12:56:56"
0
"70100301ba95dd1781875239b17b99923dff2c1627dc37ea5e26989fb885f23e"
"2026-04-19 12:56:56"
"personal"
null
null
]
INSERT INTO users (id, email, hashed_password, display_name, roles, avatar_url, theme_config, status, custom_status_text, last_seen_at, created_at, is_email_verified, email_verification_token, email_verification_token_expires_at, account_type, description, organization_category) VALUES ('019da0aa-6ad4-7b0e-b82b-5c35219247ac', 'robbinsrus@msn.com', '$2y$13$xinShPJjt2MRuIIBHrM97e9sWhCihHdnozdicllRqNHdAGUsgY.M2', 'tshnodueut', '[\"ROLE_USER\"]', NULL, '[]', 'offline', NULL, NULL, '2026-04-18 12:56:56', 0, '70100301ba95dd1781875239b17b99923dff2c1627dc37ea5e26989fb885f23e', '2026-04-19 12:56:56', 'personal', NULL, NULL);
|