wp_gridmaster_grids
StaticStores gridmaster grids data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| title | text | NO |
| attributes | text | NO |
| dated | datetime | YES |
CREATE TABLE Statement
CREATE TABLE wp_gridmaster_grids ( id mediumint(9) NOT NULL AUTO_INCREMENT, title text NOT NULL, attributes text NOT NULL, dated datetime DEFAULT NOW(), PRIMARY KEY (id) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );
Safe to delete?
If you have uninstalled Post Grid Master — Post Grids & AJAX Filters, 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_gridmaster_grids`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Post Grid Master — Post Grids & AJAX Filters