wp_eascompliance_session_data

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑session_data_idintNO
session_idvarchar(100)NO
session_keyvarchar(1000)NO
session_key_typevarchar(100)NO
session_valuevarchar(50000)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_eascompliance_session_data ( session_data_id int NOT NULL AUTO_INCREMENT , session_id varchar(100) NOT NULL , session_key varchar(1000) NOT NULL , session_key_type varchar(100) NOT NULL , session_value varchar(50000) NULL , PRIMARY KEY (session_data_id) ) ");

Safe to delete?

If you have uninstalled EAS EU compliance, 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_eascompliance_session_data`;

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

Other tables from EAS EU compliance