wp_critical_css_for_wp_urls
StaticStores critical css for wp 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_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.