wp_jg_website_analytics_sessions
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| _session | VARCHAR(100) | NO |
| _last_seen | INT(10) | NO |
| _last_url | TEXT | YES |
| _last_referrer | TEXT | YES |
| _last_country | VARCHAR(70) | NO |
| _last_region | VARCHAR(100) | NO |
| _last_city | VARCHAR(100) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_JG_website_analytics_sessions ( _session VARCHAR(100) NOT NULL, _last_seen INT(10) NOT NULL DEFAULT 0, _last_url TEXT, _last_referrer TEXT, _last_country VARCHAR(70) NOT NULL DEFAULT '', _last_region VARCHAR(100) NOT NULL DEFAULT '', _last_city VARCHAR(100) NOT NULL DEFAULT '', PRIMARY KEY (_session), KEY idx_last_seen (_last_seen) ) ENGINE
Safe to delete?
If you have uninstalled JG Website Analytics, 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_jg_website_analytics_sessions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from JG Website Analytics