wp_templates
StaticStores templates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| name | VARCHAR(200) | NO |
| options | LONGTEXT | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_templates ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(200) NOT NULL DEFAULT '', options LONGTEXT, PRIMARY KEY (id) ) $charset_collate;");
Safe to delete?
If you have uninstalled WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel, 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_templates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.