wp_configuracao
StaticStores configuracao data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| login | varchar(155) | YES |
| chaveUsuario | varchar(155) | YES |
| revenda | int | YES |
| dataUltimaIntegracao | datetime | NO |
| newsletter | varchar(55) | NO |
CREATE TABLE Statement
CREATE TABLE configuracao ( id int AUTO_INCREMENT not null UNIQUE, login varchar(155), chaveUsuario varchar(155), revenda int, dataUltimaIntegracao datetime DEFAULT '0000-00-00 00:00:00' not null, newsletter varchar(55) DEFAULT 'Empty' not null) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled E-CommerceGuru, 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_configuracao`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from E-CommerceGuru