wp_cwvpb_critical_urls

Static

Stores cwvpb critical urls data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint( 20 ) unsignedNO
url_idbigint( 20 ) unsignedNO
typevarchar(20)YES
type_namevarchar(50)YES
urlvarchar(250)NO
statusvarchar(20)NO
cached_namevarchar(100)YES
created_atdatetimeNO
updated_attimestampNO
failed_errortextNO

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.