wp_objects

Static

Stores objects data created by this plugin.

Column Definitions

ColumnTypeNullable
objectuuidchar(36)NO
parceluuidchar(36)NO
locationvarchar(255)NO
namevarchar(255)NO
descriptionvarchar(255)NO
regionuuidchar(36)NO
gatekeeperURLvarchar(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