aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorDiva Canto2010-01-01 08:45:41 -0800
committerDiva Canto2010-01-01 08:45:41 -0800
commitc540c93b543358988b2c66c2c35d1616c41ee8d2 (patch)
tree67ab383020f893b545927c2d28cdda1ad1127cb5 /OpenSim
parentYes! First test of new login service done still in 2009! Bombs in auth, becau... (diff)
downloadopensim-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')
-rw-r--r--OpenSim/Data/MySQL/Resources/002_AuthStore.sql5
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 @@
1BEGIN;
2
3INSERT INTO auth (UUID, passwordHash, passwordSalt, webLoginKey) SELECT `UUID` AS UUID, `passwordHash` AS passwordHash, `passwordSalt` AS passwordSalt, `webLoginKey` AS webLoginKey FROM users;
4
5COMMIT;