wp_amwal_order
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(20) | NO |
| payload_identifier | varchar(100) | YES |
| address_details | text | YES |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_amwal_order ( id int(20) NOT NULL AUTO_INCREMENT, payload_identifier varchar(100) DEFAULT NULL, address_details text DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY payload_identifier (payload_identifier), KEY created_at (created_at) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Amwal Checkout, 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_amwal_order`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.