wp_arcadrec_templates

Static

Stores arcadrec templates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
arcadrec_idBIGINT UNSIGNEDNO
typeVARCHAR(32)NO
subjectVARCHAR(255)NO
bodyLONGTEXTNO

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