wp_allparcels

Static

Stores allparcels data created by this plugin.

Column Definitions

ColumnTypeNullable
regionUUIDchar(36)NO
parcelnamevarchar(255)NO
ownerUUIDchar(36)NO
groupUUIDchar(36)NO
landingpointvarchar(255)NO
parcelUUIDchar(36)NO
infoUUIDchar(36)NO
parcelareaint(11)NO
gatekeeperURLvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `allparcels` ( `regionUUID` char(36) NOT NULL, `parcelname` varchar(255) NOT NULL, `ownerUUID` char(36) NOT NULL default '00000000-0000-0000-0000-000000000000', `groupUUID` char(36) NOT NULL default '00000000-0000-0000-0000-000000000000', `landingpoint` varchar(255) NOT NULL, `parcelUUID` char(36) NOT NULL default '00000000-0000-0000-0000-000000000000', `infoUUID` char(36) NOT NULL default '00000000-0000-0000-0000-000000000000', `parcelarea` int(11) NOT NULL, `gatekeeperURL` varchar(255), PRIMARY KEY (`parcelUUID`), KEY `regionUUID` (`regionUUID`) ) 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_allparcels`;

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

Other tables from w4os – OpenSimulator Web Interface