wp_gr_openinghours
StaticStores gr openinghours data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| pos_id | int(11) | NO |
| day | varchar(7) | NO |
| am_pm | varchar(2) | NO |
| opens | time | NO |
| closes | time | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_gr_openinghours ( id int(11) NOT NULL AUTO_INCREMENT, pos_id int(11) NOT NULL, `day` varchar(7) NOT NULL COMMENT 'Possible values: mon, tue, wed, thu, fri, sat, sun, pub, mon_fri', am_pm varchar(2) NOT NULL, opens time NOT NULL, closes time NOT NULL, PRIMARY KEY (id) ) ENGINE
Safe to delete?
If you have uninstalled GoodRelations for WP e-Commerce, 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_gr_openinghours`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from GoodRelations for WP e-Commerce