wp_libro_de_visitas_guestbook_table

Static

Stores libro de visitas guestbook table data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑guestbooidbigint(20)NO
guestbookpostvarchar(3000)NO
guestbookuservarchar(30)NO
guestbooktimestamptimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `libro_de_visitas_guestbook_table` ( `guestbooid` bigint(20) NOT NULL AUTO_INCREMENT, `guestbookpost` varchar(3000) NOT NULL, `guestbookuser` varchar(30) NOT NULL, `guestbooktimestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`guestbooid`) ) ENGINE

Safe to delete?

If you have uninstalled LIBRO DE VISITAS – GUESTBOOK, 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_libro_de_visitas_guestbook_table`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.