diff options
author | Homer Horwitz | 2008-09-17 19:21:28 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-09-17 19:21:28 +0000 |
commit | 0ad5d8c0e7e256dd9ff297cb624ce3c4b89b8ee2 (patch) | |
tree | 116dbad30fed0384c29252a5370a8e22c7135ac5 /OpenSim/Data/SQLite/Resources | |
parent | More ScriptEngine cleanup (diff) | |
download | opensim-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 'OpenSim/Data/SQLite/Resources')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/007_UserStore.sql | 7 |
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 @@ | |||
1 | BEGIN TRANSACTION; | ||
2 | |||
3 | ALTER TABLE useragents add currentLookAtX float not null default 128; | ||
4 | ALTER TABLE useragents add currentLookAtY float not null default 128; | ||
5 | ALTER TABLE useragents add currentLookAtZ float not null default 70; | ||
6 | |||
7 | COMMIT; | ||