wp_h5p_contents_user_data

Static

Stores h5p contents user data data created by this plugin.

Column Definitions

ColumnTypeNullable
content_idINT UNSIGNEDNO
user_idINT UNSIGNEDNO
sub_content_idINT UNSIGNEDNO
data_idVARCHAR(127)NO
dataLONGTEXTNO
preloadTINYINT UNSIGNEDNO
invalidateTINYINT UNSIGNEDNO
updated_atTIMESTAMPNO

CREATE TABLE Statement

CREATE TABLE wp_h5p_contents_user_data ( content_id INT UNSIGNED NOT NULL, user_id INT UNSIGNED NOT NULL, sub_content_id INT UNSIGNED NOT NULL, data_id VARCHAR(127) NOT NULL, data LONGTEXT NOT NULL, preload TINYINT UNSIGNED NOT NULL DEFAULT 0, invalidate TINYINT UNSIGNED NOT NULL DEFAULT 0, updated_at TIMESTAMP NOT NULL DEFAULT 0, PRIMARY KEY (content_id,user_id,sub_content_id,data_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_contents_user_data`;

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

Other tables from Interactive Content – H5P