wp_gabc_analytics

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
notice_idbigint(20)NO
event_typevarchar(20)NO
event_datedateNO
countbigint(20)NO

CREATE TABLE Statement

CREATE TABLE wp_gabc_analytics ( id bigint(20) NOT NULL AUTO_INCREMENT, notice_id bigint(20) NOT NULL, event_type varchar(20) NOT NULL, event_date date NOT NULL, count bigint(20) NOT NULL DEFAULT 1, PRIMARY KEY (id), UNIQUE KEY notice_event_date (notice_id, event_type, event_date), KEY notice_id (notice_id), KEY event_date (event_date) ) $charset_collate;"; dbDelta( $analytics_sql );

Safe to delete?

If you have uninstalled Gridxflex Announcement Bars with CTA, 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_gabc_analytics`;

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

Other tables from Gridxflex Announcement Bars with CTA