wp_gdpraccept_token

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
import_idINT(11) UNSIGNEDNO
emailVARCHAR(256)NO
tokenVARCHAR(256)NO
company_cifVARCHAR(256)NO
consent_ipvarchar(256)YES
consent_dataMEDIUMTEXTYES
sending_dateTIMESTAMPYES
sending_uidVARCHAR(256)YES
sent_dateTIMESTAMPYES

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