diff options
author | fernando | 2013-10-15 11:55:08 -0500 |
---|---|---|
committer | fernando | 2013-10-15 11:55:08 -0500 |
commit | 3e1ca2bd2136a51f23dff0d31f4725b4e05c3f7c (patch) | |
tree | 9fb7fd2e5f57862cdd5bfeff1355d7be761e75e6 /OpenSim/Data/PGSQL/Resources/InventoryStore.migrations | |
parent | Made terrain uploads thread-safe (diff) | |
download | opensim-SC-3e1ca2bd2136a51f23dff0d31f4725b4e05c3f7c.zip opensim-SC-3e1ca2bd2136a51f23dff0d31f4725b4e05c3f7c.tar.gz opensim-SC-3e1ca2bd2136a51f23dff0d31f4725b4e05c3f7c.tar.bz2 opensim-SC-3e1ca2bd2136a51f23dff0d31f4725b4e05c3f7c.tar.xz |
* Fixes mantis #6802 Simulator crashes whist loading (lighshare enabled)
* Please test
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources/InventoryStore.migrations')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/InventoryStore.migrations | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/InventoryStore.migrations b/OpenSim/Data/PGSQL/Resources/InventoryStore.migrations index b61e1f8..8f7982a 100644 --- a/OpenSim/Data/PGSQL/Resources/InventoryStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/InventoryStore.migrations | |||
@@ -209,3 +209,12 @@ alter table inventoryitems | |||
209 | alter column "creatorID" type varchar(255); | 209 | alter column "creatorID" type varchar(255); |
210 | 210 | ||
211 | Commit; | 211 | Commit; |
212 | |||
213 | :VERSION 10 | ||
214 | |||
215 | BEGIN TRANSACTION; | ||
216 | |||
217 | Alter table inventoryitems Rename Column "SaleType" to "saleType"; | ||
218 | |||
219 | Commit; | ||
220 | |||