wp_devapps_certificate_models

Static

Stores devapps certificate models data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTNO
codeCHAR(36)NO
pathVARCHAR(255)NO
urlVARCHAR(255)YES
created_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_devapps_certificate_models` ( `id` INT NOT NULL AUTO_INCREMENT, `code` CHAR(36) NOT NULL DEFAULT (uuid()), `path` VARCHAR(255) NOT NULL, `url` VARCHAR(255) NULL, `created_at` DATETIME 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_certificate_models`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Gerador de Certificados – DevApps