wp_lunexia_feed_updates

Static

Stores lunexia feed updates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
feed_typevarchar(100)NO
feed_urlvarchar(255)YES
versionvarchar(20)YES
items_updatedint(10)YES
items_addedint(10)YES
items_removedint(10)YES
statusvarchar(50)YES
error_messagetextYES
next_updatedatetimeYES
last_updatedatetimeYES
created_atdatetimeNO

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