wp_cwvpb_critical_urls
StaticStores cwvpb critical urls data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint( 20 ) unsigned | NO |
| url_id | bigint( 20 ) unsigned | NO |
| type | varchar(20) | YES |
| type_name | varchar(50) | YES |
| url | varchar(250) | NO |
| status | varchar(20) | NO |
| cached_name | varchar(100) | YES |
| created_at | datetime | NO |
| updated_at | timestamp | NO |
| failed_error | text | NO |
CREATE TABLE Statement
CREATE TABLE `wp_cwvpb_critical_urls` ( `id` bigint( 20 ) unsigned NOT NULL AUTO_INCREMENT, `url_id` bigint( 20 ) unsigned NOT NULL, `type` varchar(20), `type_name` varchar(50), `url` varchar(250) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'queue', `cached_name` varchar(100), `created_at` datetime NOT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `failed_error` text NOT NULL, KEY `url` ( `url` ), PRIMARY KEY (`id`), CONSTRAINT cwvpb_unique UNIQUE (`url`) ) ".$charset_collate.$engine.";");
Safe to delete?
If you have uninstalled Core Web Vitals & PageSpeed Booster, 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_cwvpb_critical_urls`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.