aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/CreateItemsTable.sql
diff options
context:
space:
mode:
authorSean Dague2009-02-17 19:06:23 +0000
committerSean Dague2009-02-17 19:06:23 +0000
commitc417a5b619eb85706a1782c5b0943cb8b28bd7a1 (patch)
treef14981b650694cfc4271f84368a27f63979ff35e /OpenSim/Data/MySQL/Resources/CreateItemsTable.sql
parent* Allow inventory archives to be saved from the 'root' inventory directory (diff)
downloadopensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.zip
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.gz
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.bz2
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.xz
remove all the very old create and upgrade sql files, these were
outdated by migrations 6 months ago.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/CreateItemsTable.sql24
1 files changed, 0 insertions, 24 deletions
diff --git a/OpenSim/Data/MySQL/Resources/CreateItemsTable.sql b/OpenSim/Data/MySQL/Resources/CreateItemsTable.sql
deleted file mode 100644
index ffdbe17..0000000
--- a/OpenSim/Data/MySQL/Resources/CreateItemsTable.sql
+++ /dev/null
@@ -1,24 +0,0 @@
1CREATE TABLE `inventoryitems` (
2 `inventoryID` varchar(36) NOT NULL default '',
3 `assetID` varchar(36) default NULL,
4 `assetType` int(11) default NULL,
5 `parentFolderID` varchar(36) default NULL,
6 `avatarID` varchar(36) default NULL,
7 `inventoryName` varchar(64) default NULL,
8 `inventoryDescription` varchar(128) default NULL,
9 `inventoryNextPermissions` int(10) unsigned default NULL,
10 `inventoryCurrentPermissions` int(10) unsigned default NULL,
11 `invType` int(11) default NULL,
12 `creatorID` varchar(36) default NULL,
13 `inventoryBasePermissions` int(10) unsigned NOT NULL default 0,
14 `inventoryEveryOnePermissions` int(10) unsigned NOT NULL default 0,
15 `salePrice` int(11) NOT NULL default 0,
16 `saleType` tinyint(4) NOT NULL default 0,
17 `creationDate` int(11) NOT NULL default 0,
18 `groupID` varchar(36) NOT NULL default '00000000-0000-0000-0000-000000000000',
19 `groupOwned` tinyint(4) NOT NULL default 0,
20 `flags` int(11) unsigned NOT NULL default 0,
21 PRIMARY KEY (`inventoryID`),
22 KEY `owner` (`avatarID`),
23 KEY `folder` (`parentFolderID`)
24) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 3';