wp_horizontal_scrolling_hsas
StaticStores horizontal scrolling hsas data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑hsas_id | INT unsigned | NO |
| hsas_guid | VARCHAR(255) | NO |
| hsas_text | text | NO |
| hsas_link | VARCHAR(1024) | NO |
| hsas_target | VARCHAR(1024) | NO |
| hsas_order | int(11) | NO |
| hsas_group | VARCHAR(255) | NO |
| hsas_datestart | date | NO |
| hsas_timestart | int(11) | NO |
| hsas_dateend | date | NO |
| hsas_timeend | int(11) | NO |
| hsas_css | VARCHAR(1024) | NO |
CREATE TABLE Statement
CREATE TABLE wp_horizontal_scrolling_hsas ( hsas_id INT unsigned NOT NULL AUTO_INCREMENT, hsas_guid VARCHAR(255) NOT NULL, hsas_text text NOT NULL, hsas_link VARCHAR(1024) NOT NULL default '#', hsas_target VARCHAR(1024) NOT NULL default '_self', hsas_order int(11) NOT NULL default '1', hsas_group VARCHAR(255) NOT NULL default 'IMG', hsas_datestart date NOT NULL DEFAULT '0000-00-00', hsas_timestart int(11) NOT NULL default '0', hsas_dateend date NOT NULL DEFAULT '0000-00-00', hsas_timeend int(11) NOT NULL default '24', hsas_css VARCHAR(1024) NOT NULL default '', PRIMARY KEY (hsas_id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Horizontal scrolling announcements, 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_horizontal_scrolling_hsas`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.