wp_gr_openinghours

Static

Stores gr openinghours data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
pos_idint(11)NO
dayvarchar(7)NO
am_pmvarchar(2)NO
openstimeNO
closestimeNO

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