diff options
author | Melanie | 2010-04-30 20:15:19 +0100 |
---|---|---|
committer | Melanie | 2010-04-30 20:15:19 +0100 |
commit | 9bc5098dd8cac09caab5d50045aba13110ead2c6 (patch) | |
tree | a8c197c950b14234873e66bd199178907983c302 /OpenSim/Data/SQLiteLegacy/Resources/002_AuthStore.sql | |
parent | Fix linking issue introduced in my earlier commit (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC-9bc5098dd8cac09caab5d50045aba13110ead2c6.zip opensim-SC-9bc5098dd8cac09caab5d50045aba13110ead2c6.tar.gz opensim-SC-9bc5098dd8cac09caab5d50045aba13110ead2c6.tar.bz2 opensim-SC-9bc5098dd8cac09caab5d50045aba13110ead2c6.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Data/SQLiteLegacy/Resources/002_AuthStore.sql')
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/Resources/002_AuthStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/Resources/002_AuthStore.sql b/OpenSim/Data/SQLiteLegacy/Resources/002_AuthStore.sql new file mode 100644 index 0000000..3237b68 --- /dev/null +++ b/OpenSim/Data/SQLiteLegacy/Resources/002_AuthStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN TRANSACTION; | ||
2 | |||
3 | INSERT INTO auth (UUID, passwordHash, passwordSalt, webLoginKey) SELECT `UUID` AS UUID, `passwordHash` AS passwordHash, `passwordSalt` AS passwordSalt, `webLoginKey` AS webLoginKey FROM users; | ||
4 | |||
5 | COMMIT; | ||