wp_asnp_wesb_badge
StaticStores asnp wesb badge data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| title | varchar(200) | NO |
| status | TINYINT | NO |
| ordering | bigint(20) unsigned | NO |
| options | longtext | YES |
CREATE TABLE Statement
CREATE TABLE wp_asnp_wesb_badge ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, title varchar(200) NOT NULL DEFAULT '', status TINYINT NOT NULL DEFAULT '1', ordering bigint(20) unsigned NOT NULL DEFAULT 0, options longtext NULL, PRIMARY KEY (id) ) $collate;"; return $tables; } /** * Update plugin version to current. */ private static function update_version() { update_option( self::VERSION_OPTION, get_plugin()->version );Safe to delete?
If you have uninstalled Product Badge, Label, Countdown Timer for WooCommerce – Sale 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_asnp_wesb_badge`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.