wp_guan_imagenote
StaticStores guan imagenote data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑note_ID | int(11) | NO |
| note_img_ID | varchar(15) | NO |
| note_comment_ID | int(11) | NO |
| note_author | varchar(100) | NO |
| note_email | varchar(100) | NO |
| note_top | int(11) | NO |
| note_left | int(11) | NO |
| note_width | int(11) | NO |
| note_height | int(11) | NO |
| note_text | text | NO |
| note_text_ID | varchar(100) | NO |
| note_editable | tinyint(1) | NO |
| note_date | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `guan_imagenote` ( `note_ID` int(11) NOT NULL AUTO_INCREMENT, `note_img_ID` varchar(15) NOT NULL, `note_comment_ID` int(11) NOT NULL, `note_author` varchar(100) NOT NULL, `note_email` varchar(100) NOT NULL, `note_top` int(11) NOT NULL, `note_left` int(11) NOT NULL, `note_width` int(11) NOT NULL, `note_height` int(11) NOT NULL, `note_text` text NOT NULL, `note_text_ID` varchar(100) NOT NULL, `note_editable` tinyint(1) NOT NULL, `note_date` datetime NOT NULL, PRIMARY KEY (`note_ID`) ) ENGINE
Safe to delete?
If you have uninstalled Guan Image Notes, 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_guan_imagenote`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.