wp_h5p_libraries

Static

Stores h5p libraries data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
created_atTIMESTAMPNO
updated_atTIMESTAMPNO
nameVARCHAR(127)NO
titleVARCHAR(255)NO
major_versionINT UNSIGNEDNO
minor_versionINT UNSIGNEDNO
patch_versionINT UNSIGNEDNO
runnableINT UNSIGNEDNO
restrictedINT UNSIGNEDNO
fullscreenINT UNSIGNEDNO
embed_typesVARCHAR(255)NO
preloaded_jsTEXTYES
preloaded_cssTEXTYES
drop_library_cssTEXTYES
semanticsTEXTNO
tutorial_urlVARCHAR(1023)NO
has_iconINT UNSIGNEDNO
metadata_settingsTEXTYES
add_toTEXTYES

CREATE TABLE Statement

CREATE TABLE wp_h5p_libraries ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, created_at TIMESTAMP NOT NULL, updated_at TIMESTAMP NOT NULL, name VARCHAR(127) NOT NULL, title VARCHAR(255) NOT NULL, major_version INT UNSIGNED NOT NULL, minor_version INT UNSIGNED NOT NULL, patch_version INT UNSIGNED NOT NULL, runnable INT UNSIGNED NOT NULL, restricted INT UNSIGNED NOT NULL DEFAULT 0, fullscreen INT UNSIGNED NOT NULL, embed_types VARCHAR(255) NOT NULL, preloaded_js TEXT NULL, preloaded_css TEXT NULL, drop_library_css TEXT NULL, semantics TEXT NOT NULL, tutorial_url VARCHAR(1023) NOT NULL, has_icon INT UNSIGNED NOT NULL DEFAULT 0, metadata_settings TEXT NULL, add_to TEXT DEFAULT NULL, PRIMARY KEY (id), KEY name_version (name,major_version,minor_version,patch_version), KEY runnable (runnable) ) {$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_libraries`;

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

Other tables from Interactive Content – H5P