wp_boomcdn

Static

Stores boomcdn data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
slugvarchar(255)NO
namevarchar(255)NO
versionvarchar(255)NO
urlvarchar(255)NO
typevarchar(255)NO
locationvarchar(255)NO
weightint(11)NO
enabledtinyint(4)NO
createddatetimeNO
modifieddatetimeNO

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.