diff options
author | Diva Canto | 2010-06-08 15:47:14 -0700 |
---|---|---|
committer | Diva Canto | 2010-06-08 15:47:14 -0700 |
commit | 9b9804a498a3d48e7356c0a2cd12bf98887f5a53 (patch) | |
tree | 8a64306d9000c52f99f5682fdb54d4a3d90b70bf /OpenSim/Data/MySQL/Resources/InventoryStore.migrations | |
parent | Improve instructions for [Groups] setup in OpenSim.ini.example (diff) | |
download | opensim-SC_OLD-9b9804a498a3d48e7356c0a2cd12bf98887f5a53.zip opensim-SC_OLD-9b9804a498a3d48e7356c0a2cd12bf98887f5a53.tar.gz opensim-SC_OLD-9b9804a498a3d48e7356c0a2cd12bf98887f5a53.tar.bz2 opensim-SC_OLD-9b9804a498a3d48e7356c0a2cd12bf98887f5a53.tar.xz |
* Changed CreatorIDs consistently to varchar(128)
* Deleted redundant migration for assets in SQLite
* Rewrote XInventory migrations in SQLite in the new style
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/InventoryStore.migrations')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/InventoryStore.migrations | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/InventoryStore.migrations b/OpenSim/Data/MySQL/Resources/InventoryStore.migrations index 8c5864e..3e9bad5 100644 --- a/OpenSim/Data/MySQL/Resources/InventoryStore.migrations +++ b/OpenSim/Data/MySQL/Resources/InventoryStore.migrations | |||
@@ -91,3 +91,11 @@ update inventoryitems set creatorID = '00000000-0000-0000-0000-000000000000' whe | |||
91 | alter table inventoryitems modify column creatorID varchar(36) not NULL default '00000000-0000-0000-0000-000000000000'; | 91 | alter table inventoryitems modify column creatorID varchar(36) not NULL default '00000000-0000-0000-0000-000000000000'; |
92 | 92 | ||
93 | COMMIT; | 93 | COMMIT; |
94 | |||
95 | :VERSION 5 # ------------ | ||
96 | |||
97 | BEGIN; | ||
98 | |||
99 | alter table inventoryitems modify column creatorID varchar(128) not NULL default '00000000-0000-0000-0000-000000000000'; | ||
100 | |||
101 | COMMIT; | ||