wp_hostsregister

Static

Stores hostsregister data created by this plugin.

Column Definitions

ColumnTypeNullable
hostvarchar(255)NO
portint(5)NO
registerint(10)NO
nextcheckint(10)NO
checkedtinyint(1)NO
failcounterint(10)NO
gatekeeperURLvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `hostsregister` ( `host` varchar(255) NOT NULL, `port` int(5) NOT NULL, `register` int(10) NOT NULL, `nextcheck` int(10) NOT NULL, `checked` tinyint(1) NOT NULL, `failcounter` int(10) NOT NULL, `gatekeeperURL` varchar(255), PRIMARY KEY (`host`,`port`) ) ENGINE

Safe to delete?

If you have uninstalled w4os – OpenSimulator Web Interface, 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_hostsregister`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from w4os – OpenSimulator Web Interface