wp_boomcdn
StaticStores boomcdn data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| slug | varchar(255) | NO |
| name | varchar(255) | NO |
| version | varchar(255) | NO |
| url | varchar(255) | NO |
| type | varchar(255) | NO |
| location | varchar(255) | NO |
| weight | int(11) | NO |
| enabled | tinyint(4) | NO |
| created | datetime | NO |
| modified | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_boomcdn ( id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, slug varchar(255) NOT NULL, name varchar(255) NOT NULL, version varchar(255) NOT NULL, url varchar(255) NOT NULL, type varchar(255) NOT NULL, location varchar(255) NOT NULL, weight int(11) NOT NULL DEFAULT '0', enabled tinyint(4) NOT NULL DEFAULT '1', created datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, modified datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Boom CDN, 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_boomcdn`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.