wp_horizontal_scrolling_hsas

Static

Stores horizontal scrolling hsas data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑hsas_idINT unsignedNO
hsas_guidVARCHAR(255)NO
hsas_texttextNO
hsas_linkVARCHAR(1024)NO
hsas_targetVARCHAR(1024)NO
hsas_orderint(11)NO
hsas_groupVARCHAR(255)NO
hsas_datestartdateNO
hsas_timestartint(11)NO
hsas_dateenddateNO
hsas_timeendint(11)NO
hsas_cssVARCHAR(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.