mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 01:22:15 +00:00
6 lines
213 B
PL/PgSQL
6 lines
213 B
PL/PgSQL
BEGIN;
|
|
|
|
INSERT INTO auth (UUID, passwordHash, passwordSalt, webLoginKey) SELECT `UUID` AS UUID, `passwordHash` AS passwordHash, `passwordSalt` AS passwordSalt, `webLoginKey` AS webLoginKey FROM users;
|
|
|
|
COMMIT;
|