wp_gdpraccept_token
StaticStores access tokens for authentication or API access.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| import_id | INT(11) UNSIGNED | NO |
| VARCHAR(256) | NO | |
| token | VARCHAR(256) | NO |
| company_cif | VARCHAR(256) | NO |
| consent_ip | varchar(256) | YES |
| consent_data | MEDIUMTEXT | YES |
| sending_date | TIMESTAMP | YES |
| sending_uid | VARCHAR(256) | YES |
| sent_date | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE `wp_gdpraccept_token` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `import_id` INT(11) UNSIGNED NOT NULL, `email` VARCHAR(256) NOT NULL, `token` VARCHAR(256) NOT NULL, `company_cif` VARCHAR(256) NOT NULL default '', `consent_ip` varchar(256), `consent_data` MEDIUMTEXT, `sending_date` TIMESTAMP NULL DEFAULT NULL, `sending_uid` VARCHAR(256) DEFAULT NULL, `sent_date` TIMESTAMP NULL DEFAULT NULL, PRIMARY KEY (`id`), INDEX `import_id` (`import_id` ASC) ) ENGINE
Safe to delete?
If you have uninstalled GdprAccept 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_gdpraccept_token`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from GdprAccept Lite