diff options
author | Diva Canto | 2010-01-01 08:45:41 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-01 08:45:41 -0800 |
commit | c540c93b543358988b2c66c2c35d1616c41ee8d2 (patch) | |
tree | 67ab383020f893b545927c2d28cdda1ad1127cb5 /OpenSim/Data/MySQL/Resources | |
parent | Yes! First test of new login service done still in 2009! Bombs in auth, becau... (diff) | |
download | opensim-SC_OLD-c540c93b543358988b2c66c2c35d1616c41ee8d2.zip opensim-SC_OLD-c540c93b543358988b2c66c2c35d1616c41ee8d2.tar.gz opensim-SC_OLD-c540c93b543358988b2c66c2c35d1616c41ee8d2.tar.bz2 opensim-SC_OLD-c540c93b543358988b2c66c2c35d1616c41ee8d2.tar.xz |
Auth data migration.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/002_AuthStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/002_AuthStore.sql b/OpenSim/Data/MySQL/Resources/002_AuthStore.sql new file mode 100644 index 0000000..dc7dfe0 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/002_AuthStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN; | ||
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; | ||