aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/releng/dist/SQL/mysql-inventoryfolders.txt
diff options
context:
space:
mode:
authorAdam Frisby2007-05-31 10:49:43 +0000
committerAdam Frisby2007-05-31 10:49:43 +0000
commitb34eb4e23f8230c0914e88a7fa114a61918d6e36 (patch)
tree35cd33d482c13a7b0e19450c359e64040d72e59c /releng/dist/SQL/mysql-inventoryfolders.txt
parentThe start of a beautiful thing! (eeek inventory!) (diff)
downloadopensim-SC_OLD-b34eb4e23f8230c0914e88a7fa114a61918d6e36.zip
opensim-SC_OLD-b34eb4e23f8230c0914e88a7fa114a61918d6e36.tar.gz
opensim-SC_OLD-b34eb4e23f8230c0914e88a7fa114a61918d6e36.tar.bz2
opensim-SC_OLD-b34eb4e23f8230c0914e88a7fa114a61918d6e36.tar.xz
SQL files...
Diffstat (limited to 'releng/dist/SQL/mysql-inventoryfolders.txt')
-rw-r--r--releng/dist/SQL/mysql-inventoryfolders.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/releng/dist/SQL/mysql-inventoryfolders.txt b/releng/dist/SQL/mysql-inventoryfolders.txt
new file mode 100644
index 0000000..c30239e
--- /dev/null
+++ b/releng/dist/SQL/mysql-inventoryfolders.txt
@@ -0,0 +1,9 @@
1CREATE TABLE `inventoryfolders` (
2 `folderID` varchar(36) NOT NULL default '',
3 `agentID` varchar(36) default NULL,
4 `parentFolderID` varchar(36) default NULL,
5 `folderName` varchar(64) default NULL,
6 PRIMARY KEY (`folderID`),
7 KEY `owner` (`agentID`),
8 KEY `parent` (`parentFolderID`)
9) ENGINE=InnoDB DEFAULT CHARSET=utf8;