wp_ba_amwalpay_cards_token
StaticStores access tokens for authentication or API access.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| user_id | bigint(20) | NO |
| token | varchar(56) | NO |
| merchant_id | varchar(56) | NO |
| environment | varchar(56) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ba_amwalpay_cards_token ( id bigint(20) NOT NULL AUTO_INCREMENT, user_id bigint(20) NOT NULL, token varchar(56) DEFAULT '' NOT NULL, merchant_id varchar(56) DEFAULT '' NOT NULL, environment varchar(56) DEFAULT '' NOT NULL, PRIMARY KEY (id), KEY user_id (user_id) ) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
Safe to delete?
If you have uninstalled AmwalPay for BA Booking, 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_ba_amwalpay_cards_token`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.