wp_hostsregister
StaticStores hostsregister data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| host | varchar(255) | NO |
| port | int(5) | NO |
| register | int(10) | NO |
| nextcheck | int(10) | NO |
| checked | tinyint(1) | NO |
| failcounter | int(10) | NO |
| gatekeeperURL | varchar(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