wp_devapps_certificates

Static

Stores devapps certificates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IdINTNO
codeCHAR(36)NO
personVARCHAR(255)NO
documentVARCHAR(45)NO
emailVARCHAR(255)NO
certificateVARCHAR(255)NO
created_atDATETIMENO

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