diff options
author | Justin Clarke Casey | 2008-09-12 20:38:20 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-12 20:38:20 +0000 |
commit | 2d7aca6d9dfe58ff35dd86b01b0fc79a85dc529e (patch) | |
tree | 1ef7f8bdaf78ef21c9378944b75cfbb01e1bc05b /OpenSim | |
parent | * Patch http://opensimulator.org/mantis/view.php?id=2163 (diff) | |
download | opensim-SC_OLD-2d7aca6d9dfe58ff35dd86b01b0fc79a85dc529e.zip opensim-SC_OLD-2d7aca6d9dfe58ff35dd86b01b0fc79a85dc529e.tar.gz opensim-SC_OLD-2d7aca6d9dfe58ff35dd86b01b0fc79a85dc529e.tar.bz2 opensim-SC_OLD-2d7aca6d9dfe58ff35dd86b01b0fc79a85dc529e.tar.xz |
* Add userstore sql upgrade I carelessly forgot to check in a couple of revisions ago
* Hopefully there wasn't a problem anyway, since the look at stuff isn't enabled yet
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/006_UserStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/006_UserStore.sql b/OpenSim/Data/MySQL/Resources/006_UserStore.sql new file mode 100644 index 0000000..10b321e --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/006_UserStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | ALTER TABLE agents add currentLookAt varchar(36) not null default ''; | ||
4 | |||
5 | COMMIT; | ||