wp_h5p_events

Static

Stores h5p events data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
user_idINT UNSIGNEDNO
created_atINT UNSIGNEDNO
typeVARCHAR(63)NO
sub_typeVARCHAR(63)NO
content_idINT UNSIGNEDNO
content_titleVARCHAR(255)NO
library_nameVARCHAR(127)NO
library_versionVARCHAR(31)NO

CREATE TABLE Statement

CREATE TABLE wp_h5p_events ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, user_id INT UNSIGNED NOT NULL, created_at INT UNSIGNED NOT NULL, type VARCHAR(63) NOT NULL, sub_type VARCHAR(63) NOT NULL, content_id INT UNSIGNED NOT NULL, content_title VARCHAR(255) NOT NULL, library_name VARCHAR(127) NOT NULL, library_version VARCHAR(31) NOT NULL, PRIMARY KEY (id) ) {$charset};");

Safe to delete?

If you have uninstalled Interactive Content – H5P, 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_h5p_events`;

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

Other tables from Interactive Content – H5P