diff options
author | Jeff Ames | 2007-12-20 01:01:42 +0000 |
---|---|---|
committer | Jeff Ames | 2007-12-20 01:01:42 +0000 |
commit | 36a8f70931e24ccdf027966b737d95736be6e3f9 (patch) | |
tree | 541d27bf497ea3f1b7f2a92241c5032e98880d05 /OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql | |
parent | * Re-did the mass calculations in ODE for Prim (diff) | |
download | opensim-SC-36a8f70931e24ccdf027966b737d95736be6e3f9.zip opensim-SC-36a8f70931e24ccdf027966b737d95736be6e3f9.tar.gz opensim-SC-36a8f70931e24ccdf027966b737d95736be6e3f9.tar.bz2 opensim-SC-36a8f70931e24ccdf027966b737d95736be6e3f9.tar.xz |
Extended svn:eol-style to check some other file types.
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql b/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql index 2bb5553..b5bddde 100644 --- a/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql +++ b/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql | |||
@@ -1,11 +1,11 @@ | |||
1 | CREATE TABLE `inventoryfolders` ( | 1 | CREATE TABLE `inventoryfolders` ( |
2 | `folderID` varchar(36) NOT NULL default '', | 2 | `folderID` varchar(36) NOT NULL default '', |
3 | `agentID` varchar(36) default NULL, | 3 | `agentID` varchar(36) default NULL, |
4 | `parentFolderID` varchar(36) default NULL, | 4 | `parentFolderID` varchar(36) default NULL, |
5 | `folderName` varchar(64) default NULL, | 5 | `folderName` varchar(64) default NULL, |
6 | `type` smallint NOT NULL default 0, | 6 | `type` smallint NOT NULL default 0, |
7 | `version` int NOT NULL default 0, | 7 | `version` int NOT NULL default 0, |
8 | PRIMARY KEY (`folderID`), | 8 | PRIMARY KEY (`folderID`), |
9 | KEY `owner` (`agentID`), | 9 | KEY `owner` (`agentID`), |
10 | KEY `parent` (`parentFolderID`) | 10 | KEY `parent` (`parentFolderID`) |
11 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2'; | 11 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2'; |