wp_wptr_amwalpay_cards_token

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
user_idbigint(20)NO
tokenvarchar(56)NO
merchant_idvarchar(56)NO
environmentvarchar(56)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_wptr_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 Travel Engine, 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_wptr_amwalpay_cards_token`;

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