wp_wprdm_templates
StaticStores wprdm templates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | NO |
| name | varchar(200) | NO |
| description | text | NO |
| file_path | varchar(500) | NO |
| file_name | varchar(255) | NO |
| output_format | varchar(10) | NO |
| merge_tags | longtext | NO |
| created_at | datetime | NO |
| updated_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_wprdm_templates ( id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, name varchar(200) NOT NULL DEFAULT '', description text NOT NULL, file_path varchar(500) NOT NULL DEFAULT '', file_name varchar(255) NOT NULL DEFAULT '', output_format varchar(10) NOT NULL DEFAULT 'pdf', merge_tags longtext NOT NULL, created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00', updated_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (id) ) {$charset_collate};"; dbDelta( $sql );Safe to delete?
If you have uninstalled WPRobo DocuMerge Lite, 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_wprdm_templates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WPRobo DocuMerge Lite