wp_getpaid_customer_meta

Static

Stores additional metadata (key-value pairs) for getpaid customer records.

Column Definitions

ColumnTypeNullable
🔑meta_idBIGINT(20)NO
customer_idBIGINT(20)NO
meta_keyVARCHAR(255)NO
meta_valueLONGTEXTYES
user_idBIGINT(20) UNSIGNEDNO
actionVARCHAR(50)NO
data_typeVARCHAR(50)NO
timestampDATETIMENO
additional_infoTEXTYES

CREATE TABLE Statement

CREATE TABLE wp_getpaid_customer_meta ( meta_id BIGINT(20) NOT NULL AUTO_INCREMENT, customer_id BIGINT(20) NOT NULL, meta_key VARCHAR(255) NOT NULL, meta_value LONGTEXT, PRIMARY KEY (meta_id), KEY customer_id (customer_id), KEY meta_key (meta_key(191)) ) $charset_collate;"; // Anonymization Logs. $schema['anonymization_logs'] = "CREATE TABLE wp_getpaid_anonymization_logs ( log_id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT(20) UNSIGNED NOT NULL, action VARCHAR(50) NOT NULL, data_type VARCHAR(50) NOT NULL, timestamp DATETIME NOT NULL, additional_info TEXT, PRIMARY KEY (log_id), KEY user_id (user_id), KEY action (action), KEY data_type (data_type), KEY timestamp (timestamp) ) $charset_collate;"; // Filter. $schema = apply_filters( 'getpaid_db_schema', $schema );

Safe to delete?

If you have uninstalled Payment forms, Buy now buttons, and Invoicing System | GetPaid, 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_getpaid_customer_meta`;

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

Other tables from Payment forms, Buy now buttons, and Invoicing System | GetPaid