diff options
author | Melanie | 2010-06-09 16:48:37 +0100 |
---|---|---|
committer | Melanie | 2010-06-09 16:48:37 +0100 |
commit | 6b2d2413f7026c41e7abb55c72c583670cb6011d (patch) | |
tree | 6596f0132d36f74f2e57c9b1bd891d95eb0e5a33 /OpenSim/Data/SQLite/Resources/AssetStore.migrations | |
parent | Merge branch 'master' into careminster-presence-refactor (diff) | |
parent | Add the BEGIN; I had missed (diff) | |
download | opensim-SC-6b2d2413f7026c41e7abb55c72c583670cb6011d.zip opensim-SC-6b2d2413f7026c41e7abb55c72c583670cb6011d.tar.gz opensim-SC-6b2d2413f7026c41e7abb55c72c583670cb6011d.tar.bz2 opensim-SC-6b2d2413f7026c41e7abb55c72c583670cb6011d.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/AssetStore.migrations')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/AssetStore.migrations | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/Resources/AssetStore.migrations b/OpenSim/Data/SQLite/Resources/AssetStore.migrations index bc11e13..f20631c 100644 --- a/OpenSim/Data/SQLite/Resources/AssetStore.migrations +++ b/OpenSim/Data/SQLite/Resources/AssetStore.migrations | |||
@@ -55,7 +55,7 @@ CREATE TABLE assets( | |||
55 | Local, | 55 | Local, |
56 | Temporary, | 56 | Temporary, |
57 | asset_flags INTEGER NOT NULL DEFAULT 0, | 57 | asset_flags INTEGER NOT NULL DEFAULT 0, |
58 | CreatorID varchar(36) default '', | 58 | CreatorID varchar(128) default '', |
59 | Data); | 59 | Data); |
60 | 60 | ||
61 | INSERT INTO assets(UUID,Name,Description,Type,Local,Temporary,Data) | 61 | INSERT INTO assets(UUID,Name,Description,Type,Local,Temporary,Data) |
@@ -64,3 +64,4 @@ DROP TABLE assets_backup; | |||
64 | 64 | ||
65 | COMMIT; | 65 | COMMIT; |
66 | 66 | ||
67 | |||