wp_labels
StaticStores labels data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| labels_id | BIGINT | NO |
| name | VARCHAR(255) | NO |
| title | TEXT | NO |
| color | VARCHAR(7) | NO |
CREATE TABLE Statement
CREATE TABLE `labels` ( `labels_id` BIGINT NOT NULL , `name` VARCHAR(255) NOT NULL , `title` TEXT NOT NULL , `color` VARCHAR(7) NOT NULL , PRIMARY KEY (`labels_id`) );
Safe to delete?
If you have uninstalled Email Reminders, 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_labels`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Reminders