wp_h5p_contents_user_data
StaticStores h5p contents user data data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| content_id | INT UNSIGNED | NO |
| user_id | INT UNSIGNED | NO |
| sub_content_id | INT UNSIGNED | NO |
| data_id | VARCHAR(127) | NO |
| data | LONGTEXT | NO |
| preload | TINYINT UNSIGNED | NO |
| invalidate | TINYINT UNSIGNED | NO |
| updated_at | TIMESTAMP | NO |
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