wp_fkwcppcp_paypal_tokens
StaticStores access tokens for authentication or API access.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑token_id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| gateway_id | VARCHAR(200) | NO |
| token | VARCHAR(200) | NO |
| is_default | TINYINT(1) | NO |
| type | VARCHAR(200) | NO |
| created | DATETIME | NO |
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.