wp_book_review_custom_links
StaticStores book review custom links data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑custom_link_id | int | NO |
| text | varchar(100) | NO |
| image_url | varchar(200) | YES |
| active | int(1) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_book_review_custom_links ( custom_link_id int NOT NULL AUTO_INCREMENT, text varchar(100) NOT NULL, image_url varchar(200), active int(1) NOT NULL DEFAULT 1, UNIQUE KEY id (custom_link_id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Book Review, 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_book_review_custom_links`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Book Review