wp_wprdm_templates

Static

Stores wprdm templates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
namevarchar(200)NO
descriptiontextNO
file_pathvarchar(500)NO
file_namevarchar(255)NO
output_formatvarchar(10)NO
merge_tagslongtextNO
created_atdatetimeNO
updated_atdatetimeNO

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