aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL/Resources
diff options
context:
space:
mode:
authorTleiades Hax2007-10-13 09:10:53 +0000
committerTleiades Hax2007-10-13 09:10:53 +0000
commite8c1de8e7298e6c210a89b2449d636493f516c5e (patch)
treec22b35960503372c0a49675b82651d3a2d06c29c /OpenSim/Framework/Data.MySQL/Resources
parentAsset server implementation. Again one of these "plumbing" releases, where no... (diff)
downloadopensim-SC_OLD-e8c1de8e7298e6c210a89b2449d636493f516c5e.zip
opensim-SC_OLD-e8c1de8e7298e6c210a89b2449d636493f516c5e.tar.gz
opensim-SC_OLD-e8c1de8e7298e6c210a89b2449d636493f516c5e.tar.bz2
opensim-SC_OLD-e8c1de8e7298e6c210a89b2449d636493f516c5e.tar.xz
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/Resources')
-rw-r--r--OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql4
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 049a3a2..3b6fff2 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` smallint(5) unsigned NOT NULL, 5 `assetType` TINYINT(4) NOT NULL,
6 `invType` smallint(5) unsigned NOT NULL, 6 `invType` TINYINT(4) 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,