Auth data migration.

slimupdates
Diva Canto 2010-01-01 08:45:41 -08:00
parent 1387919c20
commit c540c93b54
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
BEGIN;
INSERT INTO auth (UUID, passwordHash, passwordSalt, webLoginKey) SELECT `UUID` AS UUID, `passwordHash` AS passwordHash, `passwordSalt` AS passwordSalt, `webLoginKey` AS webLoginKey FROM users;
COMMIT;