wp_luvre_folders
StaticStores luvre folders data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| name | varchar(250) | NO |
| color | varchar(7) | NO |
| parent | int(11) unsigned | NO |
| post_type | varchar(10) | NO |
| ord | int(11) unsigned | YES |
| created_by | bigint(20) | NO |
| created | datetime | NO |
| attachment_id | bigint(20) unsigned | NO |
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