wp_guan_imagenote

Static

Stores guan imagenote data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑note_IDint(11)NO
note_img_IDvarchar(15)NO
note_comment_IDint(11)NO
note_authorvarchar(100)NO
note_emailvarchar(100)NO
note_topint(11)NO
note_leftint(11)NO
note_widthint(11)NO
note_heightint(11)NO
note_texttextNO
note_text_IDvarchar(100)NO
note_editabletinyint(1)NO
note_datedatetimeNO

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.