wp_wc_imaxel_authorization_server_tokens
StaticStores access tokens for authentication or API access.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(10) | NO |
| license_key | VARCHAR(255) | YES |
| token | VARCHAR(999) | YES |
| expiration_date | DATETIME | YES |
| issued_at | DATETIME | YES |
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