wp_asnp_wepb_simple_bundle_items

Static

Stores asnp wepb simple bundle items data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
bundle_idBIGINT(20) UNSIGNEDNO
product_idBIGINT(20) UNSIGNEDNO
quantityBIGINT(20) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_asnp_wepb_simple_bundle_items ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, bundle_id BIGINT(20) UNSIGNED NOT NULL, product_id BIGINT(20) UNSIGNED NOT NULL, quantity BIGINT(20) UNSIGNED NOT NULL DEFAULT 1, PRIMARY KEY (id), KEY bundle_id (bundle_id), KEY product_id (product_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 Bundle Builder for WooCommerce, 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_wepb_simple_bundle_items`;

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