diff options
author | BlueWall | 2012-02-17 20:04:38 -0500 |
---|---|---|
committer | BlueWall | 2012-02-17 20:04:38 -0500 |
commit | 8f8b478d366199eea49181f8d7ed0578f9e26bf7 (patch) | |
tree | a6012a1c41e39f529cb1b3abcc74ebe01dc913a9 /OpenSim/Data/SQLite/Resources | |
parent | Fillin missing SQLite support for Telehubs (diff) | |
download | opensim-SC_OLD-8f8b478d366199eea49181f8d7ed0578f9e26bf7.zip opensim-SC_OLD-8f8b478d366199eea49181f8d7ed0578f9e26bf7.tar.gz opensim-SC_OLD-8f8b478d366199eea49181f8d7ed0578f9e26bf7.tar.bz2 opensim-SC_OLD-8f8b478d366199eea49181f8d7ed0578f9e26bf7.tar.xz |
Parcel sales support to SQLite
Diffstat (limited to 'OpenSim/Data/SQLite/Resources')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/RegionStore.migrations | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations index a00a8fb..1ceddf9 100644 --- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations +++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations | |||
@@ -557,4 +557,10 @@ CREATE TABLE IF NOT EXISTS `spawn_points` ( | |||
557 | 557 | ||
558 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | 558 | ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; |
559 | 559 | ||
560 | COMMIT; \ No newline at end of file | 560 | COMMIT; |
561 | |||
562 | :VERSION 25 | ||
563 | |||
564 | BEGIN; | ||
565 | ALTER TABLE `regionsettings` ADD COLUMN `parcel_tile_ID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | ||
566 | COMMIT; | ||