wp_db_vek_subscriber_email
StaticStores db vek subscriber email data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| varchar(50) | NO | |
| dates | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_db_vek_subscriber_email ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL, `dates` datetime NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET
Safe to delete?
If you have uninstalled WP Maintenance-vek, 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_db_vek_subscriber_email`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.