wp_h5p_results
StaticStores h5p results data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| content_id | INT UNSIGNED | NO |
| user_id | INT UNSIGNED | NO |
| score | INT UNSIGNED | NO |
| max_score | INT UNSIGNED | NO |
| opened | INT UNSIGNED | NO |
| finished | INT UNSIGNED | NO |
| time | INT UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE wp_h5p_results ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, content_id INT UNSIGNED NOT NULL, user_id INT UNSIGNED NOT NULL, score INT UNSIGNED NOT NULL, max_score INT UNSIGNED NOT NULL, opened INT UNSIGNED NOT NULL, finished INT UNSIGNED NOT NULL, time INT UNSIGNED NOT NULL, PRIMARY KEY (id), KEY content_user (content_id,user_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_results`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Interactive Content – H5P