wp_h5p_contents
StaticStores h5p contents data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| created_at | TIMESTAMP | NO |
| updated_at | TIMESTAMP | NO |
| user_id | INT UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| library_id | INT UNSIGNED | NO |
| parameters | LONGTEXT | NO |
| filtered | LONGTEXT | NO |
| slug | VARCHAR(127) | NO |
| embed_type | VARCHAR(127) | NO |
| disable | INT UNSIGNED | NO |
| content_type | VARCHAR(127) | YES |
| authors | LONGTEXT | YES |
| source | VARCHAR(2083) | YES |
| year_from | INT UNSIGNED | YES |
| year_to | INT UNSIGNED | YES |
| license | VARCHAR(32) | YES |
| license_version | VARCHAR(10) | YES |
| license_extras | LONGTEXT | YES |
| author_comments | LONGTEXT | YES |
| changes | LONGTEXT | YES |
| default_language | VARCHAR(32) | YES |
| a11y_title | VARCHAR(255) | YES |
CREATE TABLE Statement
CREATE TABLE wp_h5p_contents ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, created_at TIMESTAMP NOT NULL DEFAULT 0, updated_at TIMESTAMP NOT NULL DEFAULT 0, user_id INT UNSIGNED NOT NULL, title VARCHAR(255) NOT NULL, library_id INT UNSIGNED NOT NULL, parameters LONGTEXT NOT NULL, filtered LONGTEXT NOT NULL, slug VARCHAR(127) NOT NULL, embed_type VARCHAR(127) NOT NULL, disable INT UNSIGNED NOT NULL DEFAULT 0, content_type VARCHAR(127) NULL, authors LONGTEXT NULL, source VARCHAR(2083) NULL, year_from INT UNSIGNED NULL, year_to INT UNSIGNED NULL, license VARCHAR(32) NULL, license_version VARCHAR(10) NULL, license_extras LONGTEXT NULL, author_comments LONGTEXT NULL, changes LONGTEXT NULL, default_language VARCHAR(32) NULL, a11y_title VARCHAR(255) 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_contents`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Interactive Content – H5P