wp_sql
StaticStores sql data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| or | list | YES |
| CREATE | TABLE | YES |
CREATE TABLE Statement
CREATE TABLE SQL (or list of statements). * @return array<string, string> dbDelta report. */ if ( !function_exists( 'esf_dbdelta' ) ) { function esf_dbdelta( $queries ) { if ( !function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } $rewrite_create = static function ( $query ) { if ( !is_string( $query ) || '' === $query ) { return $query; } if ( preg_match( '/^\\s*CREATE\\s+TABLE\\s+(?!IF\\s+NOT\\s+EXISTS)/i', $query ) ) { return preg_replace( '/^\\s*CREATE\\s+TABLE\\s+/i', 'CREATE TABLE IF NOT EXISTS ', $query, 1 );Safe to delete?
If you have uninstalled Easy Social Feed – Social Photos Gallery and Post Feed for WordPress, 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_sql`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Easy Social Feed – Social Photos Gallery and Post Feed for WordPress