wp_allparcels
StaticStores allparcels data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| regionUUID | char(36) | NO |
| parcelname | varchar(255) | NO |
| ownerUUID | char(36) | NO |
| groupUUID | char(36) | NO |
| landingpoint | varchar(255) | NO |
| parcelUUID | char(36) | NO |
| infoUUID | char(36) | NO |
| parcelarea | int(11) | NO |
| gatekeeperURL | varchar(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