diff options
author | Justin Clarke Casey | 2008-04-30 19:13:06 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-30 19:13:06 +0000 |
commit | f57ff4c36bab3b9e26c55d64afde251bf07a2de3 (patch) | |
tree | 6d0ff3bf8aa7a4c18fcb3ddd4ab8d15f7a3d7693 /OpenSim/Data/MSSQL/Resources | |
parent | * Completely inconsequential inventory odds and ends (actual impact - only on... (diff) | |
download | opensim-SC_OLD-f57ff4c36bab3b9e26c55d64afde251bf07a2de3.zip opensim-SC_OLD-f57ff4c36bab3b9e26c55d64afde251bf07a2de3.tar.gz opensim-SC_OLD-f57ff4c36bab3b9e26c55d64afde251bf07a2de3.tar.bz2 opensim-SC_OLD-f57ff4c36bab3b9e26c55d64afde251bf07a2de3.tar.xz |
* Change new inventory groupID field to 36 rather than 63
* Add updated stub mssql inventory sql (only really because I was in the middle of this when I spotted the numeric transposition)
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/CreateItemsTable.sql | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/CreateItemsTable.sql b/OpenSim/Data/MSSQL/Resources/CreateItemsTable.sql index 5bb27ba..435d269 100644 --- a/OpenSim/Data/MSSQL/Resources/CreateItemsTable.sql +++ b/OpenSim/Data/MSSQL/Resources/CreateItemsTable.sql | |||
@@ -17,7 +17,13 @@ CREATE TABLE [inventoryitems] ( | |||
17 | [invType] [int] default NULL, | 17 | [invType] [int] default NULL, |
18 | [creatorID] [varchar](36) default NULL, | 18 | [creatorID] [varchar](36) default NULL, |
19 | [inventoryBasePermissions] [int] NOT NULL default 0, | 19 | [inventoryBasePermissions] [int] NOT NULL default 0, |
20 | [inventoryEveryOnePermissions] [int] NOT NULL default 0, | 20 | [inventoryEveryOnePermissions] [int] NOT NULL default 0, |
21 | [salePrice] [int] default NULL, | ||
22 | [saleType] [smallint] default NULL, | ||
23 | [creationDate] [int] default NULL, | ||
24 | [groupID] [varchar](36) default NULL, | ||
25 | [groupOwned] [smallint] default NULL, | ||
26 | [flags] [int] unsigned default NULL, | ||
21 | PRIMARY KEY CLUSTERED | 27 | PRIMARY KEY CLUSTERED |
22 | ( | 28 | ( |
23 | [inventoryID] ASC | 29 | [inventoryID] ASC |