wp_devapps_certificates
StaticStores devapps certificates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑Id | INT | NO |
| code | CHAR(36) | NO |
| person | VARCHAR(255) | NO |
| document | VARCHAR(45) | NO |
| VARCHAR(255) | NO | |
| certificate | VARCHAR(255) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_devapps_certificates` ( `Id` INT NOT NULL AUTO_INCREMENT, `code` CHAR(36) NOT NULL DEFAULT (uuid()), `person` VARCHAR(255) NOT NULL, `document` VARCHAR(45) NOT NULL, `email` VARCHAR(255) NOT NULL, `certificate` VARCHAR(255) NOT NULL, `created_at` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`Id`), UNIQUE INDEX `code_UNIQUE` (`code` ASC) VISIBLE) ENGINE
Safe to delete?
If you have uninstalled Gerador de Certificados – DevApps, 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_devapps_certificates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Gerador de Certificados – DevApps