wp_parcels
StaticStores parcels data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| parcelUUID | char(36) | NO |
| regionUUID | char(36) | NO |
| parcelname | varchar(255) | NO |
| landingpoint | varchar(255) | NO |
| description | varchar(255) | NO |
| searchcategory | varchar(50) | NO |
| build | enum('true','false') | NO |
| script | enum('true','false') | NO |
| public | enum('true','false') | NO |
| dwell | float | NO |
| infouuid | varchar(36) | NO |
| mature | varchar(10) | NO |
| gatekeeperURL | varchar(255) | YES |
| imageUUID | char(36) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `parcels` ( `parcelUUID` char(36) NOT NULL, `regionUUID` char(36) NOT NULL, `parcelname` varchar(255) NOT NULL, `landingpoint` varchar(255) NOT NULL, `description` varchar(255) NOT NULL, `searchcategory` varchar(50) NOT NULL, `build` enum('true','false') NOT NULL, `script` enum('true','false') NOT NULL, `public` enum('true','false') NOT NULL, `dwell` float NOT NULL default '0', `infouuid` varchar(36) NOT NULL default '', `mature` varchar(10) NOT NULL default 'PG', `gatekeeperURL` varchar(255), `imageUUID` char(36), PRIMARY KEY (`regionUUID`,`parcelUUID`), KEY `name` (`parcelname`), KEY `description` (`description`), KEY `searchcategory` (`searchcategory`), KEY `dwell` (`dwell`) ) ENGINESafe 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_parcels`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from w4os – OpenSimulator Web Interface