wp_aeroscroll_gallery_imagegalleries
StaticStores aeroscroll gallery imagegalleries data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| created_at | TIMESTAMP | YES |
| updated_at | TIMESTAMP | YES |
| title | VARCHAR(120) | YES |
| slug | VARCHAR(256) | YES |
| description | TEXT | NO |
| ordering | BIGINT | NO |
| published | TINYINT | NO |
CREATE TABLE Statement
CREATE TABLE wp_aeroscroll_gallery_imagegalleries ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, title VARCHAR(120), slug VARCHAR(256), description TEXT NOT NULL, ordering BIGINT NOT NULL, published TINYINT NOT NULL DEFAULT 1, PRIMARY KEY (id) ) $collate;"; dbDelta($schema_ig);
Safe to delete?
If you have uninstalled Aeroscroll Gallery – Infinite Scroll Image Gallery & Post Grid with Photo Gallery, 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_aeroscroll_gallery_imagegalleries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Aeroscroll Gallery – Infinite Scroll Image Gallery & Post Grid with Photo Gallery