wp_f12_prof_crawl_results
StaticStores f12 prof crawl results data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| url | varchar(2048) | NO |
| device | enum('desktop','mobile') | NO |
| ttfb | float | YES |
| load_time | float | YES |
| html_size | int unsigned | YES |
| total_requests | int unsigned | YES |
| css_count | int unsigned | YES |
| css_size | int unsigned | YES |
| js_count | int unsigned | YES |
| js_size | int unsigned | YES |
| image_count | int unsigned | YES |
| image_size | int unsigned | YES |
| external_requests | int unsigned | YES |
| redirect_count | int unsigned | YES |
| response_headers | longtext | YES |
| assets_data | longtext | YES |
| score | float | YES |
| status | enum('pending','crawling','done','error') | NO |
| error_message | text | YES |
| crawl_batch | varchar(36) | YES |
| created_at | datetime | NO |
| crawl_batch | varchar(36) | NO |
| priority | enum('critical','high','medium','low','optional') | NO |
| category | varchar(50) | NO |
| title | varchar(500) | NO |
| problem | longtext | NO |
| impact_score | float | YES |
| impact_load_time | varchar(50) | YES |
| impact_bandwidth | varchar(50) | YES |
| affected_items | longtext | YES |
| steps | longtext | YES |
| tool_action | varchar(100) | YES |
| manual_alternative | longtext | YES |
| status | enum('open','in_progress','done','ignored') | NO |
| created_at | datetime | NO |
| device | enum('desktop','mobile') | NO |
| score_total | float | NO |
| score_server | float | YES |
| score_loadtime | float | YES |
| score_assets | float | YES |
| score_images | float | YES |
| score_cache | float | YES |
| score_database | float | YES |
| urls_crawled | int unsigned | YES |
| issues_found | int unsigned | YES |
| crawl_batch | varchar(36) | YES |
| created_at | datetime | NO |
| handle | varchar(200) | NO |
| asset_type | enum('css','js') | NO |
| action | enum('disable','async','defer') | NO |
| scope | varchar(50) | NO |
| scope_value | varchar(500) | YES |
| source_plugin | varchar(200) | YES |
| is_protected | tinyint(1) | NO |
| created_at | datetime | NO |
| url | varchar(2048) | NO |
| device | enum('desktop','mobile') | NO |
| score_performance | float | YES |
| score_accessibility | float | YES |
| score_best_practices | float | YES |
| score_seo | float | YES |
| lcp_ms | float | YES |
| fcp_ms | float | YES |
| cls | float | YES |
| tbt_ms | float | YES |
| si_ms | float | YES |
| tti_ms | float | YES |
| field_lcp_ms | int | YES |
| field_cls | float | YES |
| field_inp_ms | int | YES |
| field_fcp_ms | int | YES |
| field_ttfb_ms | int | YES |
| field_overall | varchar(10) | YES |
| lighthouse_version | varchar(20) | YES |
| runtime_error | varchar(255) | YES |
| created_at | datetime | NO |
| attachment_id | bigint(20) unsigned | NO |
| original_path | varchar(500) | NO |
| original_size | int unsigned | NO |
| optimized_size | int unsigned | YES |
| format_from | varchar(10) | NO |
| format_to | varchar(10) | NO |
| quality | int unsigned | NO |
| status | varchar(20) | NO |
| error_message | text | YES |
| batch_id | varchar(36) | YES |
| created_at | datetime | NO |
| url | varchar(2048) | NO |
| assets_json | longtext | NO |
| asset_count | int unsigned | YES |
| css_count | int unsigned | YES |
| js_count | int unsigned | YES |
| scan_batch | varchar(36) | YES |
| scanned_at | datetime | NO |
| template_key | varchar(200) | NO |
| template_label | varchar(200) | NO |
| css_content | longtext | YES |
| source_url | varchar(2048) | YES |
| generated_at | datetime | YES |
| status | varchar(20) | NO |
| error_message | text | YES |
| run_id | varchar(36) | NO |
| status | varchar(20) | NO |
| phase | tinyint unsigned | NO |
| phase_detail | varchar(255) | YES |
| settings_before | longtext | YES |
| asset_rules_before | longtext | YES |
| asset_suggestions_before | longtext | YES |
| htaccess_before | longtext | YES |
| critical_css_before | longtext | YES |
| settings_applied | longtext | YES |
| asset_rules_applied | longtext | YES |
| recommendations_before_json | longtext | YES |
| recommendations_resolved | longtext | YES |
| score_before | longtext | YES |
| score_after | longtext | YES |
| recommendations_before | int unsigned | YES |
| recommendations_after | int unsigned | YES |
| started_at | datetime | YES |
| completed_at | datetime | YES |
| error_message | text | YES |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_f12_prof_crawl_results ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, url varchar(2048) NOT NULL, device enum('desktop','mobile') NOT NULL DEFAULT 'desktop', ttfb float DEFAULT NULL, load_time float DEFAULT NULL, html_size int unsigned DEFAULT NULL, total_requests int unsigned DEFAULT NULL, css_count int unsigned DEFAULT NULL, css_size int unsigned DEFAULT NULL, js_count int unsigned DEFAULT NULL, js_size int unsigned DEFAULT NULL, image_count int unsigned DEFAULT NULL, image_size int unsigned DEFAULT NULL, external_requests int unsigned DEFAULT NULL, redirect_count int unsigned DEFAULT NULL, response_headers longtext DEFAULT NULL, assets_data longtext DEFAULT NULL, score float DEFAULT NULL, status enum('pending','crawling','done','error') NOT NULL DEFAULT 'pending', error_message text DEFAULT NULL, crawl_batch varchar(36) DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_url (url(191)), KEY idx_device (device), KEY idx_batch (crawl_batch), KEY idx_created (created_at) ) {$charset}; CREATE TABLE wp_f12_prof_recommendations ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, crawl_batch varchar(36) NOT NULL, priority enum('critical','high','medium','low','optional') NOT NULL DEFAULT 'medium', category varchar(50) NOT NULL, title varchar(500) NOT NULL, problem longtext NOT NULL, impact_score float DEFAULT NULL, impact_load_time varchar(50) DEFAULT NULL, impact_bandwidth varchar(50) DEFAULT NULL, affected_items longtext DEFAULT NULL, steps longtext DEFAULT NULL, tool_action varchar(100) DEFAULT NULL, manual_alternative longtext DEFAULT NULL, status enum('open','in_progress','done','ignored') NOT NULL DEFAULT 'open', created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_batch (crawl_batch), KEY idx_priority (priority), KEY idx_category (category), KEY idx_status (status) ) {$charset}; CREATE TABLE wp_f12_prof_history ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, device enum('desktop','mobile') NOT NULL DEFAULT 'desktop', score_total float NOT NULL, score_server float DEFAULT NULL, score_loadtime float DEFAULT NULL, score_assets float DEFAULT NULL, score_images float DEFAULT NULL, score_cache float DEFAULT NULL, score_database float DEFAULT NULL, urls_crawled int unsigned DEFAULT NULL, issues_found int unsigned DEFAULT NULL, crawl_batch varchar(36) DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_device (device), KEY idx_created (created_at) ) {$charset}; CREATE TABLE wp_f12_prof_asset_rules ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, handle varchar(200) NOT NULL, asset_type enum('css','js') NOT NULL, action enum('disable','async','defer') NOT NULL DEFAULT 'disable', scope varchar(50) NOT NULL DEFAULT 'global', scope_value varchar(500) DEFAULT NULL, source_plugin varchar(200) DEFAULT NULL, is_protected tinyint(1) NOT NULL DEFAULT 0, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_handle (handle), KEY idx_type (asset_type), KEY idx_scope (scope) ) {$charset}; CREATE TABLE wp_f12_prof_pagespeed_results ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, url varchar(2048) NOT NULL, device enum('desktop','mobile') NOT NULL DEFAULT 'desktop', score_performance float DEFAULT NULL, score_accessibility float DEFAULT NULL, score_best_practices float DEFAULT NULL, score_seo float DEFAULT NULL, lcp_ms float DEFAULT NULL, fcp_ms float DEFAULT NULL, cls float DEFAULT NULL, tbt_ms float DEFAULT NULL, si_ms float DEFAULT NULL, tti_ms float DEFAULT NULL, field_lcp_ms int DEFAULT NULL, field_cls float DEFAULT NULL, field_inp_ms int DEFAULT NULL, field_fcp_ms int DEFAULT NULL, field_ttfb_ms int DEFAULT NULL, field_overall varchar(10) DEFAULT NULL, lighthouse_version varchar(20) DEFAULT NULL, runtime_error varchar(255) DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_url_device (url(191), device), KEY idx_created (created_at) ) {$charset}; CREATE TABLE wp_f12_prof_image_queue ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, attachment_id bigint(20) unsigned NOT NULL, original_path varchar(500) NOT NULL, original_size int unsigned NOT NULL DEFAULT 0, optimized_size int unsigned DEFAULT NULL, format_from varchar(10) NOT NULL DEFAULT '', format_to varchar(10) NOT NULL DEFAULT 'webp', quality int unsigned NOT NULL DEFAULT 80, status varchar(20) NOT NULL DEFAULT 'pending', error_message text DEFAULT NULL, batch_id varchar(36) DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_status (status), KEY idx_batch (batch_id) ) {$charset}; CREATE TABLE wp_f12_prof_asset_scan_results ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, url varchar(2048) NOT NULL, assets_json longtext NOT NULL, asset_count int unsigned DEFAULT 0, css_count int unsigned DEFAULT 0, js_count int unsigned DEFAULT 0, scan_batch varchar(36) DEFAULT NULL, scanned_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_url (url(191)), KEY idx_batch (scan_batch) ) {$charset}; CREATE TABLE wp_f12_prof_critical_css ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, template_key varchar(200) NOT NULL, template_label varchar(200) NOT NULL DEFAULT '', css_content longtext DEFAULT NULL, source_url varchar(2048) DEFAULT NULL, generated_at datetime DEFAULT NULL, status varchar(20) NOT NULL DEFAULT 'pending', error_message text DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY idx_template (template_key) ) {$charset}; CREATE TABLE wp_f12_prof_optimizer_runs ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, run_id varchar(36) NOT NULL, status varchar(20) NOT NULL DEFAULT 'pending', phase tinyint unsigned NOT NULL DEFAULT 0, phase_detail varchar(255) DEFAULT NULL, settings_before longtext DEFAULT NULL, asset_rules_before longtext DEFAULT NULL, asset_suggestions_before longtext DEFAULT NULL, htaccess_before longtext DEFAULT NULL, critical_css_before longtext DEFAULT NULL, settings_applied longtext DEFAULT NULL, asset_rules_applied longtext DEFAULT NULL, recommendations_before_json longtext DEFAULT NULL, recommendations_resolved longtext DEFAULT NULL, score_before longtext DEFAULT NULL, score_after longtext DEFAULT NULL, recommendations_before int unsigned DEFAULT 0, recommendations_after int unsigned DEFAULT 0, started_at datetime DEFAULT NULL, completed_at datetime DEFAULT NULL, error_message text DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY idx_run_id (run_id), KEY idx_status (status), KEY idx_created (created_at) ) {$charset}; "; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta($sql);Safe to delete?
If you have uninstalled F12 Profiler, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_f12_prof_crawl_results`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from F12 Profiler