wp_emsb_settings
StaticStores emsb settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) UNSIGNED | YES |
| date | TIMESTAMP | NO |
| admin_mail_subject | text | YES |
| admin_mail_body | text | YES |
| customer_mail_pending_subject | text | YES |
| customer_mail_pending_body | text | YES |
| customer_mail_confirmed_subject | text | YES |
| customer_mail_confirmed_body | text | YES |
| customer_mail_cancel_subject | text | YES |
| customer_mail_cancel_body | text | YES |
| customer_cookie_duration | int(11) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_emsb_settings ( `id` int(11) UNSIGNED AUTO_INCREMENT PRIMARY KEY, `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `admin_mail_subject` text, `admin_mail_body` text, `customer_mail_pending_subject` text, `customer_mail_pending_body` text, `customer_mail_confirmed_subject` text, `customer_mail_confirmed_body` text, `customer_mail_cancel_subject` text, `customer_mail_cancel_body` text, `customer_cookie_duration` int(11) ) ENGINE
Safe to delete?
If you have uninstalled Doctor Appointment Booking Plugin – EMSB, 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_emsb_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Doctor Appointment Booking Plugin – EMSB