wp_arcadrec_templates
StaticStores arcadrec templates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| arcadrec_id | BIGINT UNSIGNED | NO |
| type | VARCHAR(32) | NO |
| subject | VARCHAR(255) | NO |
| body | LONGTEXT | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_arcadrec_templates ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, arcadrec_id BIGINT UNSIGNED NOT NULL, type VARCHAR(32) NOT NULL, subject VARCHAR(255) NOT NULL DEFAULT '', body LONGTEXT NOT NULL DEFAULT '', PRIMARY KEY (id), UNIQUE KEY arcadrec_type (arcadrec_id, type) ) $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_templates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from ARC — Advance Review Copy