aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations67
1 files changed, 67 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index baeeedd..ba898bb 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -798,6 +798,73 @@ COMMIT;
798:VERSION 32 #--------------------- 798:VERSION 32 #---------------------
799 799
800BEGIN; 800BEGIN;
801CREATE TABLE `regionwindlight` (
802 `region_id` varchar(36) NOT NULL DEFAULT '000000-0000-0000-0000-000000000000',
803 `water_color_r` float(9,6) unsigned NOT NULL DEFAULT '4.000000',
804 `water_color_g` float(9,6) unsigned NOT NULL DEFAULT '38.000000',
805 `water_color_b` float(9,6) unsigned NOT NULL DEFAULT '64.000000',
806 `water_fog_density_exponent` float(3,1) unsigned NOT NULL DEFAULT '4.0',
807 `underwater_fog_modifier` float(3,2) unsigned NOT NULL DEFAULT '0.25',
808 `reflection_wavelet_scale_1` float(3,1) unsigned NOT NULL DEFAULT '2.0',
809 `reflection_wavelet_scale_2` float(3,1) unsigned NOT NULL DEFAULT '2.0',
810 `reflection_wavelet_scale_3` float(3,1) unsigned NOT NULL DEFAULT '2.0',
811 `fresnel_scale` float(3,2) unsigned NOT NULL DEFAULT '0.40',
812 `fresnel_offset` float(3,2) unsigned NOT NULL DEFAULT '0.50',
813 `refract_scale_above` float(3,2) unsigned NOT NULL DEFAULT '0.03',
814 `refract_scale_below` float(3,2) unsigned NOT NULL DEFAULT '0.20',
815 `blur_multiplier` float(4,3) unsigned NOT NULL DEFAULT '0.040',
816 `big_wave_direction_x` float(3,2) NOT NULL DEFAULT '1.05',
817 `big_wave_direction_y` float(3,2) NOT NULL DEFAULT '-0.42',
818 `little_wave_direction_x` float(3,2) NOT NULL DEFAULT '1.11',
819 `little_wave_direction_y` float(3,2) NOT NULL DEFAULT '-1.16',
820 `normal_map_texture` varchar(36) NOT NULL DEFAULT '822ded49-9a6c-f61c-cb89-6df54f42cdf4',
821 `horizon_r` float(3,2) unsigned NOT NULL DEFAULT '0.25',
822 `horizon_g` float(3,2) unsigned NOT NULL DEFAULT '0.25',
823 `horizon_b` float(3,2) unsigned NOT NULL DEFAULT '0.32',
824 `horizon_i` float(3,2) unsigned NOT NULL DEFAULT '0.32',
825 `haze_horizon` float(3,2) unsigned NOT NULL DEFAULT '0.19',
826 `blue_density_r` float(3,2) unsigned NOT NULL DEFAULT '0.12',
827 `blue_density_g` float(3,2) unsigned NOT NULL DEFAULT '0.22',
828 `blue_density_b` float(3,2) unsigned NOT NULL DEFAULT '0.38',
829 `blue_density_i` float(3,2) unsigned NOT NULL DEFAULT '0.38',
830 `haze_density` float(3,2) unsigned NOT NULL DEFAULT '0.70',
831 `density_multiplier` float(3,2) unsigned NOT NULL DEFAULT '0.18',
832 `distance_multiplier` float(4,1) unsigned NOT NULL DEFAULT '0.8',
833 `max_altitude` int(4) unsigned NOT NULL DEFAULT '1605',
834 `sun_moon_color_r` float(3,2) unsigned NOT NULL DEFAULT '0.24',
835 `sun_moon_color_g` float(3,2) unsigned NOT NULL DEFAULT '0.26',
836 `sun_moon_color_b` float(3,2) unsigned NOT NULL DEFAULT '0.30',
837 `sun_moon_color_i` float(3,2) unsigned NOT NULL DEFAULT '0.30',
838 `sun_moon_position` float(4,3) unsigned NOT NULL DEFAULT '0.317',
839 `ambient_r` float(3,2) unsigned NOT NULL DEFAULT '0.35',
840 `ambient_g` float(3,2) unsigned NOT NULL DEFAULT '0.35',
841 `ambient_b` float(3,2) unsigned NOT NULL DEFAULT '0.35',
842 `ambient_i` float(3,2) unsigned NOT NULL DEFAULT '0.35',
843 `east_angle` float(3,2) unsigned NOT NULL DEFAULT '0.00',
844 `sun_glow_focus` float(3,2) unsigned NOT NULL DEFAULT '0.10',
845 `sun_glow_size` float(3,2) unsigned NOT NULL DEFAULT '1.75',
846 `scene_gamma` float(4,2) unsigned NOT NULL DEFAULT '1.00',
847 `star_brightness` float(3,2) unsigned NOT NULL DEFAULT '0.00',
848 `cloud_color_r` float(3,2) unsigned NOT NULL DEFAULT '0.41',
849 `cloud_color_g` float(3,2) unsigned NOT NULL DEFAULT '0.41',
850 `cloud_color_b` float(3,2) unsigned NOT NULL DEFAULT '0.41',
851 `cloud_color_i` float(3,2) unsigned NOT NULL DEFAULT '0.41',
852 `cloud_x` float(3,2) unsigned NOT NULL DEFAULT '1.00',
853 `cloud_y` float(3,2) unsigned NOT NULL DEFAULT '0.53',
854 `cloud_density` float(3,2) unsigned NOT NULL DEFAULT '1.00',
855 `cloud_coverage` float(3,2) unsigned NOT NULL DEFAULT '0.27',
856 `cloud_scale` float(3,2) unsigned NOT NULL DEFAULT '0.42',
857 `cloud_detail_x` float(3,2) unsigned NOT NULL DEFAULT '1.00',
858 `cloud_detail_y` float(3,2) unsigned NOT NULL DEFAULT '0.53',
859 `cloud_detail_density` float(3,2) unsigned NOT NULL DEFAULT '0.12',
860 `cloud_scroll_x` float(3,2) unsigned NOT NULL DEFAULT '0.20',
861 `cloud_scroll_x_lock` tinyint(1) unsigned NOT NULL DEFAULT '0',
862 `cloud_scroll_y` float(3,2) unsigned NOT NULL DEFAULT '0.01',
863 `cloud_scroll_y_lock` tinyint(1) unsigned NOT NULL DEFAULT '0',
864 `draw_classic_clouds` tinyint(1) unsigned NOT NULL DEFAULT '1',
865 PRIMARY KEY (`region_id`)
866);
867
801ALTER TABLE estate_settings AUTO_INCREMENT = 100; 868ALTER TABLE estate_settings AUTO_INCREMENT = 100;
802COMMIT; 869COMMIT;
803 870