wp_h5p_events
StaticStores h5p events data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| user_id | INT UNSIGNED | NO |
| created_at | INT UNSIGNED | NO |
| type | VARCHAR(63) | NO |
| sub_type | VARCHAR(63) | NO |
| content_id | INT UNSIGNED | NO |
| content_title | VARCHAR(255) | NO |
| library_name | VARCHAR(127) | NO |
| library_version | VARCHAR(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