diff options
author | Tleiades Hax | 2007-10-13 09:21:08 +0000 |
---|---|---|
committer | Tleiades Hax | 2007-10-13 09:21:08 +0000 |
commit | f6aeff6cc3f6ebc58db702206d469718d19b7ba0 (patch) | |
tree | 468fb8483a2cd03e472a6988ef60f1c8ff01c07e /OpenSim/Framework/Data.MySQL/Resources | |
parent | (no commit message) (diff) | |
download | opensim-SC_OLD-f6aeff6cc3f6ebc58db702206d469718d19b7ba0.zip opensim-SC_OLD-f6aeff6cc3f6ebc58db702206d469718d19b7ba0.tar.gz opensim-SC_OLD-f6aeff6cc3f6ebc58db702206d469718d19b7ba0.tar.bz2 opensim-SC_OLD-f6aeff6cc3f6ebc58db702206d469718d19b7ba0.tar.xz |
Added capbility to use MySQL as the database backend in stand alone mode for assets and inventory.
Added asset_plugin key to "StandAlone" section of OpenSim.ini
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/Resources')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql b/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql index 3b6fff2..049a3a2 100644 --- a/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql +++ b/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql | |||
@@ -2,8 +2,8 @@ CREATE TABLE `assets` ( | |||
2 | `id` binary(16) NOT NULL, | 2 | `id` binary(16) NOT NULL, |
3 | `name` varchar(64) NOT NULL, | 3 | `name` varchar(64) NOT NULL, |
4 | `description` varchar(64) NOT NULL, | 4 | `description` varchar(64) NOT NULL, |
5 | `assetType` TINYINT(4) NOT NULL, | 5 | `assetType` smallint(5) unsigned NOT NULL, |
6 | `invType` TINYINT(4) NOT NULL, | 6 | `invType` smallint(5) unsigned NOT NULL, |
7 | `local` tinyint(1) NOT NULL, | 7 | `local` tinyint(1) NOT NULL, |
8 | `temporary` tinyint(1) NOT NULL, | 8 | `temporary` tinyint(1) NOT NULL, |
9 | `data` longblob NOT NULL, | 9 | `data` longblob NOT NULL, |