wp_dropp_rcp_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| date_created | timestamp | YES |
| note | TEXT | YES |
| type | VARCHAR(20) | YES |
| payment_id | VARCHAR(20) | YES |
CREATE TABLE Statement
CREATE TABLE wp_dropp_rcp_logs ( id bigint(20) NOT NULL AUTO_INCREMENT, date_created timestamp default now(), note TEXT, type VARCHAR(20), payment_id VARCHAR(20), PRIMARY KEY (id) ) {$collate};", );Safe to delete?
If you have uninstalled Dropp Payment Gateway For Restrict Content Pro, 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_dropp_rcp_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.