wp_aeroscroll_gallery_imagegallery_images
StaticStores aeroscroll gallery imagegallery images data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| imagegallery_id | BIGINT UNSIGNED | NO |
| title | VARCHAR(120) | YES |
| description | TEXT | YES |
| relativedir | VARCHAR(256) | YES |
| image_order | BIGINT UNSIGNED | NO |
| image_name | VARCHAR(256) | NO |
| image_type | VARCHAR(120) | YES |
| image_resolution | BIGINT UNSIGNED | YES |
| created_at | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE wp_aeroscroll_gallery_imagegallery_images ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, imagegallery_id BIGINT UNSIGNED NOT NULL, title VARCHAR(120), description TEXT, relativedir VARCHAR(256), image_order BIGINT UNSIGNED NOT NULL DEFAULT 1, image_name VARCHAR(256) NOT NULL, image_type VARCHAR(120), image_resolution BIGINT UNSIGNED, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, 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_imagegallery_images`;
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