diff options
author | Mike Mazur | 2008-09-10 00:19:36 +0000 |
---|---|---|
committer | Mike Mazur | 2008-09-10 00:19:36 +0000 |
commit | e0d092ec537a7187d3b5a367f27b834fccad778d (patch) | |
tree | f6a46a6ec66d6d7713d5a35836299b0a9561ba42 /OpenSim/Data/MySQL/Resources | |
parent | * Fixes Sqlite crash bug when saving a prim. (diff) | |
download | opensim-SC-e0d092ec537a7187d3b5a367f27b834fccad778d.zip opensim-SC-e0d092ec537a7187d3b5a367f27b834fccad778d.tar.gz opensim-SC-e0d092ec537a7187d3b5a367f27b834fccad778d.tar.bz2 opensim-SC-e0d092ec537a7187d3b5a367f27b834fccad778d.tar.xz |
Thanks, nlin, for a patch implementing persistence for "When Left Clicked"
object property. Fix issue 2149.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/018_RegionStore.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/018_RegionStore.sql b/OpenSim/Data/MySQL/Resources/018_RegionStore.sql new file mode 100644 index 0000000..68c489c --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/018_RegionStore.sql | |||
@@ -0,0 +1,6 @@ | |||
1 | begin; | ||
2 | |||
3 | ALTER TABLE prims ADD COLUMN ClickAction tinyint NOT NULL default 0; | ||
4 | |||
5 | commit; | ||
6 | |||