wp_cosmosfarm_comments_token

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
user_idbigint(20) unsignedYES
access_tokenvarchar(128)YES
expirychar(14)YES

CREATE TABLE Statement

CREATE TABLE `wp_cosmosfarm_comments_token` ( `user_id` bigint(20) unsigned DEFAULT NULL, `access_token` varchar(128) DEFAULT NULL, `expiry` char(14) DEFAULT NULL, UNIQUE KEY `access_token` (`access_token`), KEY `user_id` (`user_id`), KEY `expiry` (`expiry`) ) {$charset_collate};");

Safe to delete?

If you have uninstalled 코스모스팜 소셜댓글, 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_cosmosfarm_comments_token`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.