wp_arcadrec_books

Static

Stores arcadrec books data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
titleVARCHAR(255)NO
descriptionLONGTEXTNO
release_dateDATEYES
page_idBIGINT UNSIGNEDYES
pdf_pathVARCHAR(512)NO
epub_pathVARCHAR(512)NO
questionsJSONYES
min_ratioDECIMAL(4,3)NO
from_nameVARCHAR(255)NO
from_emailVARCHAR(255)NO
publishedTINYINT(1)NO
release_sentTINYINT(1)NO
amazon_urlTEXTNO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_arcadrec_books ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL DEFAULT '', description LONGTEXT NOT NULL DEFAULT '', release_date DATE DEFAULT NULL, page_id BIGINT UNSIGNED DEFAULT NULL, pdf_path VARCHAR(512) NOT NULL DEFAULT '', epub_path VARCHAR(512) NOT NULL DEFAULT '', questions JSON DEFAULT NULL, min_ratio DECIMAL(4,3) NOT NULL DEFAULT 0, from_name VARCHAR(255) NOT NULL DEFAULT '', from_email VARCHAR(255) NOT NULL DEFAULT '', published TINYINT(1) NOT NULL DEFAULT 0, release_sent TINYINT(1) NOT NULL DEFAULT 0, amazon_url TEXT NOT NULL DEFAULT '', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $c;" );

Safe to delete?

If you have uninstalled ARC — Advance Review Copy, 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_arcadrec_books`;

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

Other tables from ARC — Advance Review Copy