wp_iande_likes
StaticStores iande likes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | INTEGER | NO |
| post_id | INTEGER | NO |
| user_id | INTEGER | NO |
| status | VARCHAR(10) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_iande_likes` ( ID INTEGER NOT NULL AUTO_INCREMENT, post_id INTEGER NOT NULL, user_id INTEGER NOT NULL, status VARCHAR(10) NOT NULL, /* L = like, U = unlike */ PRIMARY KEY (ID) ) {$wpdb->get_charset_collate()}"; $wpdb->query($sql);Safe to delete?
If you have uninstalled Iandé, 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_iande_likes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.