Adding currentLookAt to useragents table in SQLite. This complements the

MySQL change from http://opensimulator.org/mantis/view.php?id=2073
This commit is contained in:
Homer Horwitz
2008-09-17 19:21:28 +00:00
parent e94d6f12ee
commit 0ad5d8c0e7
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
BEGIN TRANSACTION;
ALTER TABLE useragents add currentLookAtX float not null default 128;
ALTER TABLE useragents add currentLookAtY float not null default 128;
ALTER TABLE useragents add currentLookAtZ float not null default 70;
COMMIT;