diff options
author | BlueWall | 2012-02-17 17:31:20 -0500 |
---|---|---|
committer | BlueWall | 2012-02-17 17:31:20 -0500 |
commit | d03e878d530a551ae7fb5757f8bcd61aac46d919 (patch) | |
tree | 4062c3d465eb4d5427d12dcaca4c39372e2adeab /OpenSim/Data/SQLite/Resources/RegionStore.migrations | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-d03e878d530a551ae7fb5757f8bcd61aac46d919.zip opensim-SC_OLD-d03e878d530a551ae7fb5757f8bcd61aac46d919.tar.gz opensim-SC_OLD-d03e878d530a551ae7fb5757f8bcd61aac46d919.tar.bz2 opensim-SC_OLD-d03e878d530a551ae7fb5757f8bcd61aac46d919.tar.xz |
Fillin missing SQLite support for Telehubs
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/RegionStore.migrations | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations index 0f40cdc..a00a8fb 100644 --- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations +++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations | |||
@@ -541,4 +541,20 @@ CREATE TABLE regionwindlight ( | |||
541 | cloud_scroll_y_lock INTEGER NOT NULL DEFAULT '0', | 541 | cloud_scroll_y_lock INTEGER NOT NULL DEFAULT '0', |
542 | draw_classic_clouds INTEGER NOT NULL DEFAULT '1'); | 542 | draw_classic_clouds INTEGER NOT NULL DEFAULT '1'); |
543 | 543 | ||
544 | COMMIT; | ||
545 | |||
546 | |||
547 | :VERSION 24 | ||
548 | |||
549 | BEGIN; | ||
550 | |||
551 | CREATE TABLE IF NOT EXISTS `spawn_points` ( | ||
552 | `RegionID` varchar(36) NOT NULL DEFAULT '000000-0000-0000-0000-000000000000', | ||
553 | `Yaw` float NOT NULL, | ||
554 | `Pitch` float NOT NULL, | ||
555 | `Distance` float NOT NULL | ||
556 | ); | ||
557 | |||
558 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | ||
559 | |||
544 | COMMIT; \ No newline at end of file | 560 | COMMIT; \ No newline at end of file |