wp_arcadrec_reservations
StaticStores arcadrec reservations data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| arcadrec_id | BIGINT UNSIGNED | NO |
| amazon_user_id | VARCHAR(255) | NO |
| expires_at | DATETIME | NO |
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