wp_gsplms_rating
StaticStores gsplms rating data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑rating_id | int(11) | YES |
| user_id | int(11) | YES |
| post_id | int(11) | YES |
| rating | varchar(25) | YES |
| comment | longtext | YES |
| status | int(11) | YES |
| created_on | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_gsplms_rating ( `rating_id` int(11) AUTO_INCREMENT, `user_id` int(11) NULL, `post_id` int(11) NULL, `rating` varchar(25) NULL, `comment` longtext NULL, `status` int(11) DEFAULT 1, `created_on` datetime NULL,PRIMARY KEY (`rating_id`) ) {$collate}");Safe to delete?
If you have uninstalled Quick Learn, 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_gsplms_rating`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Quick Learn