wp_fkwcppcp_paypal_tokens

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
🔑token_idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
gateway_idVARCHAR(200)NO
tokenVARCHAR(200)NO
is_defaultTINYINT(1)NO
typeVARCHAR(200)NO
createdDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_fkwcppcp_paypal_tokens ( token_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED NOT NULL, gateway_id VARCHAR(200) NOT NULL, token VARCHAR(200) NOT NULL, is_default TINYINT(1) NOT NULL DEFAULT '0', type VARCHAR(200) NOT NULL, created DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (token_id), KEY user_id (user_id) ) $collate; "; return $tables; } catch ( \Exception|\Error $e ) { // Logger is now static; Logger::error( $e->getMessage() );

Safe to delete?

If you have uninstalled FunnelKit Payment Gateway with PayPal 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_fkwcppcp_paypal_tokens`;

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