wp_amwalpay_cf7_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_amwalpay_cf7_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;"; dbDelta($sql);

Safe to delete?

If you have uninstalled AmwalPay for Contact Form 7, 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_amwalpay_cf7_cards_token`;

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

Other tables from AmwalPay for Contact Form 7