wp_luvre_folders

Static

Stores luvre folders data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
namevarchar(250)NO
colorvarchar(7)NO
parentint(11) unsignedNO
post_typevarchar(10)NO
ordint(11) unsignedYES
created_bybigint(20)NO
createddatetimeNO
attachment_idbigint(20) unsignedNO

CREATE TABLE Statement

CREATE TABLE wp_luvre_folders ( id int(11) unsigned NOT NULL AUTO_INCREMENT, name varchar(250) NOT NULL, color varchar(7) NOT NULL DEFAULT '', parent int(11) unsigned NOT NULL DEFAULT 0, post_type varchar(10) NOT NULL DEFAULT '', ord int(11) unsigned NULL DEFAULT 0, created_by bigint(20) NOT NULL DEFAULT 0, created datetime NOT NULL, PRIMARY KEY (id) ) $collate; CREATE TABLE wp_luvre_attachments ( folder_id int(11) unsigned NOT NULL, attachment_id bigint(20) unsigned NOT NULL, UNIQUE KEY `unique_folder_attachment` (`folder_id`,`attachment_id`) ) $collate; "; return $tables; } public static function createOptions() { $luvre_stt = get_option( 'luvre_settings', [ ] );

Safe to delete?

If you have uninstalled Luvre – WordPress Media Library Folders, 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_luvre_folders`;

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

Other tables from Luvre – WordPress Media Library Folders