wp_book_review_custom_link_urls

Static

Stores book review custom link urls data created by this plugin.

Column Definitions

ColumnTypeNullable
post_idbigint(20)NO
custom_link_idintNO
urlvarchar(200)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_book_review_custom_link_urls ( post_id bigint(20) NOT NULL, custom_link_id int NOT NULL, url varchar(200), UNIQUE KEY id (post_id, custom_link_id) ) $charset_collate;"; dbDelta( $sql );

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_link_urls`;

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

Other tables from Book Review