diff options
author | BlueWall | 2012-02-04 00:28:22 -0500 |
---|---|---|
committer | BlueWall | 2012-02-04 00:28:22 -0500 |
commit | 6034e5d112b0086cfd4768d58289e301358a2c6a (patch) | |
tree | 32e6d552c06eb841ffe92382b01761ed5831ce0b /OpenSim/Data/MySQL/Resources | |
parent | Supply correct parameters to detailed authentication login fail message (diff) | |
download | opensim-SC_OLD-6034e5d112b0086cfd4768d58289e301358a2c6a.zip opensim-SC_OLD-6034e5d112b0086cfd4768d58289e301358a2c6a.tar.gz opensim-SC_OLD-6034e5d112b0086cfd4768d58289e301358a2c6a.tar.bz2 opensim-SC_OLD-6034e5d112b0086cfd4768d58289e301358a2c6a.tar.xz |
Add default value to TelehubObject
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index 9891f4b..099beaf 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations | |||
@@ -874,3 +874,13 @@ COMMIT; | |||
874 | BEGIN; | 874 | BEGIN; |
875 | ALTER TABLE regionsettings ADD COLUMN covenant_datetime int unsigned NOT NULL DEFAULT '0'; | 875 | ALTER TABLE regionsettings ADD COLUMN covenant_datetime int unsigned NOT NULL DEFAULT '0'; |
876 | COMMIT; | 876 | COMMIT; |
877 | |||
878 | :VERSION 43 #--------------------- | ||
879 | |||
880 | BEGIN; | ||
881 | |||
882 | ALTER TABLE `regionsettings` MODIFY COLUMN `TelehubObject` VARCHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | ||
883 | |||
884 | COMMIT; | ||
885 | |||
886 | |||