wp_lunexia_feed_updates
StaticStores lunexia feed updates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| feed_type | varchar(100) | NO |
| feed_url | varchar(255) | YES |
| version | varchar(20) | YES |
| items_updated | int(10) | YES |
| items_added | int(10) | YES |
| items_removed | int(10) | YES |
| status | varchar(50) | YES |
| error_message | text | YES |
| next_update | datetime | YES |
| last_update | datetime | YES |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_lunexia_feed_updates ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, feed_type varchar(100) NOT NULL, feed_url varchar(255), version varchar(20), items_updated int(10) DEFAULT 0, items_added int(10) DEFAULT 0, items_removed int(10) DEFAULT 0, status varchar(50), error_message text, next_update datetime, last_update datetime, created_at datetime NOT NULL, PRIMARY KEY (id), KEY feed_type (feed_type), KEY last_update (last_update), KEY next_update (next_update) ) {$charset_collate};"; dbDelta( $sql );Safe to delete?
If you have uninstalled Lunexia .htaccess Shield, 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_lunexia_feed_updates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Lunexia .htaccess Shield