wp_critical_css_for_wp_urls

Static

Stores critical css for wp 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_critical_css_for_wp_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 Default '', UNIQUE KEY `url` ( `url` ), PRIMARY KEY (`id`) ) " . $charset_collate . $engine . ';' );

Safe to delete?

If you have uninstalled Reduce Unused CSS Solution with Critical CSS For WP, 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_critical_css_for_wp_urls`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.