diff options
author | Justin Clarke Casey | 2008-09-12 20:37:07 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-12 20:37:07 +0000 |
commit | 2fcc131ef3365209778d21b760ec7392585b6109 (patch) | |
tree | 4ceacd819abdcb2c5eadbb4fa6df8c9ff106e20d /OpenSim/Data/SQLite/Resources | |
parent | * Check in first part of http://opensimulator.org/mantis/view.php?id=2073 (diff) | |
download | opensim-SC_OLD-2fcc131ef3365209778d21b760ec7392585b6109.zip opensim-SC_OLD-2fcc131ef3365209778d21b760ec7392585b6109.tar.gz opensim-SC_OLD-2fcc131ef3365209778d21b760ec7392585b6109.tar.bz2 opensim-SC_OLD-2fcc131ef3365209778d21b760ec7392585b6109.tar.xz |
* Patch http://opensimulator.org/mantis/view.php?id=2163
* Add prim ClickAction persistence to SQLite
* This will require a prebuild
* Thanks nlin!
Diffstat (limited to 'OpenSim/Data/SQLite/Resources')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/010_RegionStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/010_RegionStore.sql b/OpenSim/Data/SQLite/Resources/010_RegionStore.sql new file mode 100644 index 0000000..b91ccf0 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/010_RegionStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | ALTER TABLE prims ADD COLUMN ClickAction INTEGER NOT NULL default 0; | ||
4 | |||
5 | COMMIT; | ||