| 1 |
2.42 ms |
SELECT r0_.id AS id_0, r0_.uid AS uid_1, r0_.created_at AS created_at_2, r0_.user_agent AS user_agent_3, r0_.ip AS ip_4, r0_.min_area AS min_area_5, r0_.min_rooms AS min_rooms_6, r0_.furnished AS furnished_7, r0_.max_rent AS max_rent_8, r0_.residents AS residents_9, r0_.cities AS cities_10, r0_.state AS state_11, r0_.extrafields AS extrafields_12, r0_.city_id AS city_id_13 FROM rental_file_draft r0_ WHERE r0_.ip = ? AND r0_.user_agent = ? AND r0_.created_at > ? LIMIT 1
Parameters: [
"216.73.216.103"
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
"2026-09-23 05:07:50"
]
SELECT r0_.id AS id_0, r0_.uid AS uid_1, r0_.created_at AS created_at_2, r0_.user_agent AS user_agent_3, r0_.ip AS ip_4, r0_.min_area AS min_area_5, r0_.min_rooms AS min_rooms_6, r0_.furnished AS furnished_7, r0_.max_rent AS max_rent_8, r0_.residents AS residents_9, r0_.cities AS cities_10, r0_.state AS state_11, r0_.extrafields AS extrafields_12, r0_.city_id AS city_id_13 FROM rental_file_draft r0_ WHERE r0_.ip = '216.73.216.103' AND r0_.user_agent = 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)' AND r0_.created_at > '2026-09-23 05:07:50' LIMIT 1;
|
| 4 |
1.30 ms |
INSERT INTO rental_file_draft (id, uid, created_at, user_agent, ip, min_area, min_rooms, furnished, max_rent, residents, cities, state, extrafields, city_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
9
"6ab35fd24639"
"2026-09-23 05:12:50"
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
"216.73.216.103"
20
1
2
null
null
null
"city"
null
null
]
INSERT INTO rental_file_draft (id, uid, created_at, user_agent, ip, min_area, min_rooms, furnished, max_rent, residents, cities, state, extrafields, city_id) VALUES (9, '6ab35fd24639', '2026-09-23 05:12:50', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', '216.73.216.103', 20, 1, 2, NULL, NULL, NULL, 'city', NULL, NULL);
|