aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/007_UserStore.sql
diff options
context:
space:
mode:
authorHomer Horwitz2008-09-17 19:21:28 +0000
committerHomer Horwitz2008-09-17 19:21:28 +0000
commit0ad5d8c0e7e256dd9ff297cb624ce3c4b89b8ee2 (patch)
tree116dbad30fed0384c29252a5370a8e22c7135ac5 /OpenSim/Data/SQLite/Resources/007_UserStore.sql
parentMore ScriptEngine cleanup (diff)
downloadopensim-SC_OLD-0ad5d8c0e7e256dd9ff297cb624ce3c4b89b8ee2.zip
opensim-SC_OLD-0ad5d8c0e7e256dd9ff297cb624ce3c4b89b8ee2.tar.gz
opensim-SC_OLD-0ad5d8c0e7e256dd9ff297cb624ce3c4b89b8ee2.tar.bz2
opensim-SC_OLD-0ad5d8c0e7e256dd9ff297cb624ce3c4b89b8ee2.tar.xz
Adding currentLookAt to useragents table in SQLite. This complements the
MySQL change from http://opensimulator.org/mantis/view.php?id=2073
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLite/Resources/007_UserStore.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/007_UserStore.sql b/OpenSim/Data/SQLite/Resources/007_UserStore.sql
new file mode 100644
index 0000000..8b0cd28
--- /dev/null
+++ b/OpenSim/Data/SQLite/Resources/007_UserStore.sql
@@ -0,0 +1,7 @@
1BEGIN TRANSACTION;
2
3ALTER TABLE useragents add currentLookAtX float not null default 128;
4ALTER TABLE useragents add currentLookAtY float not null default 128;
5ALTER TABLE useragents add currentLookAtZ float not null default 70;
6
7COMMIT;