Database:Inventoryfolders
From OpenSimulator
Line 20: | Line 20: | ||
'''folderName'''<br> | '''folderName'''<br> | ||
− | |||
Text of the folder's name as it appears in the client inventory interface | Text of the folder's name as it appears in the client inventory interface | ||
<br> | <br> | ||
<br> | <br> | ||
'''type'''<br> | '''type'''<br> | ||
− | |||
numerically encoded inventory folder type (e.g., 'Textures', 'Scripts', or 'Objects') | numerically encoded inventory folder type (e.g., 'Textures', 'Scripts', or 'Objects') | ||
<br> | <br> | ||
Line 34: | Line 32: | ||
<br> | <br> | ||
'''folderID'''<br> | '''folderID'''<br> | ||
− | |||
Uniquely identifies the folder. This facilitates the folder being claimed as a logical container by other folders, or the things in the inventoryitems table that are said to be 'in' the folder. | Uniquely identifies the folder. This facilitates the folder being claimed as a logical container by other folders, or the things in the inventoryitems table that are said to be 'in' the folder. | ||
<br> | <br> | ||
<br> | <br> | ||
'''agentID'''<br> | '''agentID'''<br> | ||
− | |||
Unique agent identifier - identifies the agent which owns the folder. | Unique agent identifier - identifies the agent which owns the folder. | ||
<br> | <br> |
Revision as of 09:21, 23 February 2009
inventoryfolders Records details concerning the avatar's inventory organisation, (back to Database Documentation)
specifically the folders. No information about contents of the folders is in this table.
The current structure of the avatar appearance table is as follows:
Field | Type | Null | Key | Default | Extra | |
folderName | varchar(64) | YES | NULL | |||
type | smallint(6) | NO | 0 | |||
version | int(11) | NO | 0 | |||
folderID | char(36) | NO | PRI | 00000000-0000-0000-0000-000000000000 | ||
agentID | char(36) | YES | MUL | NULL | ||
parentFolderID | char(36) | YES | MUL | NULL |
(back to Database Documentation)
folderName
Text of the folder's name as it appears in the client inventory interface
type
numerically encoded inventory folder type (e.g., 'Textures', 'Scripts', or 'Objects')
version
unknown at present
folderID
Uniquely identifies the folder. This facilitates the folder being claimed as a logical container by other folders, or the things in the inventoryitems table that are said to be 'in' the folder.
agentID
Unique agent identifier - identifies the agent which owns the folder.
parentFolderID
Unique folder identifier 'claims' the folder which is said to 'contain' this one in the same fashion as things in the inventoryitems table 'claim' the folder said to 'contain' them
(back to Database Documentation)