wp_objects
StaticStores objects data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| objectuuid | char(36) | NO |
| parceluuid | char(36) | NO |
| location | varchar(255) | NO |
| name | varchar(255) | NO |
| description | varchar(255) | NO |
| regionuuid | char(36) | NO |
| gatekeeperURL | varchar(255) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `objects` ( `objectuuid` char(36) NOT NULL, `parceluuid` char(36) NOT NULL, `location` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `description` varchar(255) NOT NULL, `regionuuid` char(36) NOT NULL default '', `gatekeeperURL` varchar(255), PRIMARY KEY (`objectuuid`,`parceluuid`) ) 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_objects`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from w4os – OpenSimulator Web Interface