wp_arcadrec_meta
StaticStores additional metadata (key-value pairs) for arcadrec records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| arcadrec_id | BIGINT UNSIGNED | NO |
| meta_key | VARCHAR(100) | NO |
| meta_value | LONGTEXT | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_arcadrec_meta ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, arcadrec_id BIGINT UNSIGNED NOT NULL, meta_key VARCHAR(100) NOT NULL, meta_value LONGTEXT, PRIMARY KEY (id), UNIQUE KEY arcadrec_key (arcadrec_id, meta_key) ) $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_meta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from ARC — Advance Review Copy