wp_lhdn_settings
StaticStores lhdn settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT | YES |
| setting_key | VARCHAR(100) | YES |
| setting_value | LONGTEXT | YES |
| updated_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_lhdn_settings ( id BIGINT AUTO_INCREMENT PRIMARY KEY, setting_key VARCHAR(100) UNIQUE, setting_value LONGTEXT, updated_at DATETIME ) {$charset}; ");Safe to delete?
If you have uninstalled MyInvoice Sync, 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_lhdn_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from MyInvoice Sync