wp_arcadrec_reservations

Static

Stores arcadrec reservations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
arcadrec_idBIGINT UNSIGNEDNO
amazon_user_idVARCHAR(255)NO
expires_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_arcadrec_reservations ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, arcadrec_id BIGINT UNSIGNED NOT NULL, amazon_user_id VARCHAR(255) NOT NULL, expires_at DATETIME NOT NULL, PRIMARY KEY (id), UNIQUE KEY arcadrec_user (arcadrec_id, amazon_user_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_reservations`;

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

Other tables from ARC — Advance Review Copy