Primitems
From OpenSimulator
Estate Managers Records managers of estates (back to Database Documentation)
The current structure of the Primitems table is as follows:
Field | Type | Null | Key | Default | Extra |
invType | int(11) | YES | |||
assetType | int(11) | YES | |||
Name | varchar(255) | YES | |||
Description | varchar(255) | YES | |||
CreationDate | bigint(20) | YES | |||
nextPermissions | int(11) | YES | |||
currentPermissions | int(11) | YES | |||
basePermissions | int(11) | YES | |||
everyonePermissions | int(11) | YES | |||
groupPermissions | int(11) | YES | |||
flags | int(11) | YES | 0 | ||
itemID | char(36) | NO | PRI | ||
prim | char(36) | NO | MUL | ||
assetID | char(36) | YES | |||
parentfolderID | char(36) | YES | |||
creatorID | char(36) | YES | |||
ownerID | char(36) | YES | |||
groupID | char(36) | YES | |||
lastownerID | char(36) | YES |
(back to Database Documentation)
invType
The inventory type of this item. Is this needed with asset type?
assetType
The asset type of this item.
name
The name of this item defined by the creator.
description
A definition of this item.
creationDate
The date the item was created.
nextPermissions
The permissions to be granted to the next owner of this item.
currentPermissions
The permissions currently in force on thie item.
basepermissions
The permissions that the item was created with.
everyonepermissions
The permissions applied to everyone except the owner.
grouppermissions
Not yet implemented - waiting on groups.
flags
Not yet identified.
itemID
The UUID of this item (i.e. the key by which it is accessed).
primID
The UUID of the prim to which this item is attached.
assetID
The UUID of the asset on the asset table created by this item.
parentfolderID
Not certain about the use of this field, but it seems to be the same as the primID.
ownerID
The UUID of the user who currently owns this item.
groupID
Not currently used as groups are not yet implemented.
lastownerID
The UUID of the user who previously owned this item.
(back to Database Documentation)