mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08: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;
|