wp_gsplms_rating

Static

Stores gsplms rating data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑rating_idint(11)YES
user_idint(11)YES
post_idint(11)YES
ratingvarchar(25)YES
commentlongtextYES
statusint(11)YES
created_ondatetimeYES

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