wp_wc_imaxel_authorization_server_tokens

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
🔑idINT(10)NO
license_keyVARCHAR(255)YES
tokenVARCHAR(999)YES
expiration_dateDATETIMEYES
issued_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_wc_imaxel_authorization_server_tokens ( `id` INT(10) NOT NULL AUTO_INCREMENT, `license_key` VARCHAR(255) CHARACTER SET utf8, `token` VARCHAR(999) CHARACTER SET utf8, `expiration_date` DATETIME, `issued_at` DATETIME, PRIMARY KEY (`id`) ) $collate;" );

Safe to delete?

If you have uninstalled Imaxel editors for WooCommerce, 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_wc_imaxel_authorization_server_tokens`;

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

Other tables from Imaxel editors for WooCommerce