wp_emsb_settings

Static

Stores emsb settings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) UNSIGNEDYES
dateTIMESTAMPNO
admin_mail_subjecttextYES
admin_mail_bodytextYES
customer_mail_pending_subjecttextYES
customer_mail_pending_bodytextYES
customer_mail_confirmed_subjecttextYES
customer_mail_confirmed_bodytextYES
customer_mail_cancel_subjecttextYES
customer_mail_cancel_bodytextYES
customer_cookie_durationint(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