diff options
author | Melanie | 2010-06-08 00:37:38 +0100 |
---|---|---|
committer | Melanie | 2010-06-08 00:37:38 +0100 |
commit | a246cbce8dca64ff31482632aaeff0b34650a723 (patch) | |
tree | 15bdf61b41bfd6fd971e255cee055d789a587a68 /OpenSim/Data/MySQL/Resources/RegionStore.migrations | |
parent | Add a call to SOG.ResumeScripts() after region crossing / teleport (diff) | |
download | opensim-SC_OLD-a246cbce8dca64ff31482632aaeff0b34650a723.zip opensim-SC_OLD-a246cbce8dca64ff31482632aaeff0b34650a723.tar.gz opensim-SC_OLD-a246cbce8dca64ff31482632aaeff0b34650a723.tar.bz2 opensim-SC_OLD-a246cbce8dca64ff31482632aaeff0b34650a723.tar.xz |
Add a migration to adjust types in the WL table. The new connector likes that
better
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index d8a279d..45ab4a7 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations | |||
@@ -723,3 +723,9 @@ BEGIN; | |||
723 | ALTER TABLE regionsettings ADD map_tile_ID CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | 723 | ALTER TABLE regionsettings ADD map_tile_ID CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; |
724 | COMMIT; | 724 | COMMIT; |
725 | 725 | ||
726 | :VERSION 34 #--------------------- | ||
727 | |||
728 | BEGIN; | ||
729 | ALTER TABLE `regionwindlight` CHANGE COLUMN `cloud_scroll_x` `cloud_scroll_x` FLOAT(4,2) NOT NULL DEFAULT '0.20' AFTER `cloud_detail_density`, CHANGE COLUMN `cloud_scroll_y` `cloud_scroll_y` FLOAT(4,2) NOT NULL DEFAULT '0.01' AFTER `cloud_scroll_x_lock`; | ||
730 | COMMIT; | ||
731 | |||