wp_erm_branches
StaticStores erm branches data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| name | VARCHAR(255) | NO |
| address | TEXT | NO |
| phone | VARCHAR(255) | NO |
| opening_hours | VARCHAR(255) | NO |
| status | VARCHAR(255) | NO |
| created_at | DATETIME | YES |
| updated_at | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_erm_branches` ( `id` INT AUTO_INCREMENT PRIMARY KEY, `name` VARCHAR(255) NOT NULL, `address` TEXT NOT NULL, `phone` VARCHAR(255) NOT NULL, `opening_hours` VARCHAR(255) NOT NULL, `status` VARCHAR(255) NOT NULL, `created_at` DATETIME DEFAULT CURRENT_TIMESTAMP, `updated_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) $charset_collate;"; dbDelta($sql);
Safe to delete?
If you have uninstalled Easy Restaurant Manager, 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_erm_branches`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Easy Restaurant Manager