wp_h5p_results

Static

Stores h5p results data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
content_idINT UNSIGNEDNO
user_idINT UNSIGNEDNO
scoreINT UNSIGNEDNO
max_scoreINT UNSIGNEDNO
openedINT UNSIGNEDNO
finishedINT UNSIGNEDNO
timeINT UNSIGNEDNO

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