wp_control_listings_bookmarks
StaticStores control listings bookmarks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| user_id | bigint(20) | NO |
| post_id | bigint(20) | NO |
| bookmark_note | longtext | YES |
| date_created | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_control_listings_bookmarks ( id bigint(20) NOT NULL auto_increment, user_id bigint(20) NOT NULL, post_id bigint(20) NOT NULL, bookmark_note longtext NULL, date_created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (id) ) $collate; "; dbDelta( $sql );
Safe to delete?
If you have uninstalled Control Listings – Classifieds Ads Directory Portal Manager, 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_control_listings_bookmarks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.