Database:Inventoryitems

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(New page: '''inventoryitems''' ''Records details with respect to the avatar's personal property (assets)''      (back to Database Documentation)<br> <br><br> The cu...)
 
Line 30: Line 30:
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(back to [[Database Documentation]])<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(back to [[Database Documentation]])<br>
 
<hr>
 
<hr>
 
+
'''assetID'''<br><br>
'''Owner'''<br>
+
Refers to the related row in the assets table.
'''Serial'''<br>
+
'''assetType'''<br><br>
'''Visual_Params'''<br>
+
Type of asset (e.g., script, texture, or shape)
'''Texture'''<br>
+
'''inventoryName'''<br><br>
'''Avatar_Height'''<br>
+
Text of the name of the inventory item as it appears in the client inventory interface.
'''Body_Item'''<br>
+
'''inventoryDescription'''<br><br>
Refers to inventory item for Body<br>
+
Text of the description of the inventory item as it appears in the client inventory interface.
'''Body_Asset'''<br><br>
+
'''inventoryNextPermissions'''<br><br>
Refers to item in assets for Body<br>
+
Permissions that will be applied to the item if/when it is transferred to another avatar.
'''Skin_Item'''<br><br>
+
'''inventoryCurrentPermissions'''<br><br>
Refers to inventory item for Skin<br>
+
Permissions on the the item for the current posessor of the item.
'''Skin_Asset'''<br><br>
+
'''invType'''<br><br>
Refers to item in assets for Skin<br>
+
Type of inventory item (is this redundant with assetType?)
'''Hair_Item'''<br><br>
+
'''creatorID'''<br><br>
Refers to inventory item for Hair<br>
+
UUID of the item's original creator.
'''Hair_Asset'''<br><br>
+
'''inventoryBasePermissions'''<br><br>
Refers to item in assets for Hair<br>
+
Base permissions of the object.
'''Eyes_Item'''<br><br>
+
'''inventoryEveryOnePermissions'''<br><br>
Refers to inventory item for Eyes<br>
+
Permissions with respect to everyone but the owner of the item.
'''Eyes_Asset'''<br><br>
+
'''salePrice'''<br><br>
Refers to item in assets for Eyes<br>
+
Sale price of the item.
'''Shirt_Item'''<br><br>
+
'''saleType'''<br><br>
Refers to inventory item for Shirt<br>
+
''presently unknown''
'''Shirt_Asset'''<br><br>
+
'''creationDate'''<br><br>
Refers to item in assets for Shirt<br>
+
Date the item was created
'''Pants_Item'''<br><br>
+
'''groupID'''<br><br>
Refers to inventory item for Pants<br>
+
UUID of the group that the items is 'deeded' to
'''Pants_Asset'''<br><br>
+
'''groupOwned'''<br><br>
Refers to item in assets for Pants<br>
+
group ownership flags
'''Shoes_Item'''<br><br>
+
'''flags'''<br><br>
Refers to inventory item for Shoes<br>
+
''presently unknown''
'''Shoes_Asset'''<br><br>
+
'''inventoryID'''<br><br>
Refers to item in assets for Shoes<br>
+
UUID of inventory item
'''Socks_Item'''<br><br>
+
'''avatarID'''<br><br>
Refers to inventory item for Socks<br>
+
UUID of item's owner
'''Socks_Asset'''<br><br>
+
'''parentFolderID'''<br><br>
Refers to item in assets for Socks<br>
+
UUID of the folder said to 'contain' the item
'''Jacket_Item'''<br><br>
+
Refers to inventory item for Jacket<br>
+
'''Jacket_Asset'''<br><br>
+
Refers to item in assets for Jacket<br>
+
'''Gloves_Item'''<br><br>
+
Refers to inventory item for Gloves<br>
+
'''Gloves_Asset'''<br><br>
+
Refers to item in assets for Gloves<br>
+
'''Undershirt_Item'''<br><br>
+
Refers to inventory item for Undershirt<br>
+
'''Undershirt_Asset'''<br><br>
+
Refers to item in assets for Undershirt<br>
+
'''Underpants_Item'''<br><br>
+
Refers to inventory item for Underpants<br>
+
'''Underpants_Asset'''<br><br>
+
Refers to item in assets for Underpants<br>
+
'''Skirt_Asset'''<br><br>
+
Refers to item in assets for Skirt<br>
+
'''Skirt_Item'''<br><br>
+
Refers to inventory item for Skirt<br>
+
 
<hr>
 
<hr>
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(back to [[Database Documentation]])<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(back to [[Database Documentation]])<br>

Revision as of 08:55, 29 July 2008

inventoryitems Records details with respect to the avatar's personal property (assets)      (back to Database Documentation)


The current structure of the inventoryitems table is as follows:


Field
TypeNullKeyDefaultExtra
 
assetIDvarchar(36)YESNULL 
assetTypeint(11) unsignedYESNULL
inventoryNamevarchar(64)YESNULL
inventoryDescriptionvarchar(64)YESNULL
inventoryNextPermissionsint(10) unsignedYESNULL
inventoryCurrentPermissionsint(10) unsignedYESNULL
invTypeint(11)YESNULL
CreatorIDvarchar(36)YESNULL
inventoryBasePermissionsint(10) unsignedNO0
inventoryEveryOnePermissionsint(10) unsignedNO0
salePriceint(11)NONULL
saleTypetinyint(4)NONULL
creationDateint(11)NONULL
groupIDvarchar(36)NO00000000-0000-0000-0000-000000000000
groupOwnedtinyint(4)NONULL
flagsint(11) unsignedNO0
inventoryIDchar(36)NOPRI00000000-0000-0000-0000-000000000000
avatarIDchar(36)YESMULNULL
parentFolderIdchar(36)YESMULNULL



      (back to Database Documentation)


assetID

Refers to the related row in the assets table. assetType

Type of asset (e.g., script, texture, or shape) inventoryName

Text of the name of the inventory item as it appears in the client inventory interface. inventoryDescription

Text of the description of the inventory item as it appears in the client inventory interface. inventoryNextPermissions

Permissions that will be applied to the item if/when it is transferred to another avatar. inventoryCurrentPermissions

Permissions on the the item for the current posessor of the item. invType

Type of inventory item (is this redundant with assetType?) creatorID

UUID of the item's original creator. inventoryBasePermissions

Base permissions of the object. inventoryEveryOnePermissions

Permissions with respect to everyone but the owner of the item. salePrice

Sale price of the item. saleType

presently unknown creationDate

Date the item was created groupID

UUID of the group that the items is 'deeded' to groupOwned

group ownership flags flags

presently unknown inventoryID

UUID of inventory item avatarID

UUID of item's owner parentFolderID

UUID of the folder said to 'contain' the item


      (back to Database Documentation)

Personal tools
General
About This Wiki